18 lines
424 B
Ruby
18 lines
424 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Clusters::AgentToken do
|
|
it { is_expected.to belong_to(:agent).class_name('Clusters::Agent') }
|
|
|
|
describe '#token' do
|
|
it 'is generated on save' do
|
|
agent_token = build(:cluster_agent_token, token_encrypted: nil)
|
|
expect(agent_token.token).to be_nil
|
|
|
|
agent_token.save!
|
|
|
|
expect(agent_token.token).to be_present
|
|
end
|
|
end
|
|
end
|