19ff9d9899
rails_helper.rb's only logic was to require spec_helper.rb.
17 lines
413 B
Ruby
17 lines
413 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe GpgKeySubkey do
|
|
subject { build(:gpg_key_subkey) }
|
|
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:gpg_key) }
|
|
end
|
|
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:gpg_key_id) }
|
|
it { is_expected.to validate_presence_of(:fingerprint) }
|
|
it { is_expected.to validate_presence_of(:keyid) }
|
|
end
|
|
end
|