summaryrefslogtreecommitdiff
path: root/spec/models/gpg_key_spec.rb
diff options
context:
space:
mode:
authorAlexis Reigel <mail@koffeinfrei.org>2017-06-28 13:08:29 +0200
committerAlexis Reigel <mail@koffeinfrei.org>2017-07-27 15:43:37 +0200
commite9515dff845dfbbb51e556e4e6a4f9cf951cf239 (patch)
tree19ed4ef1499290bf2e263e6b19f27dbd7806f816 /spec/models/gpg_key_spec.rb
parent9a759c620179c72821fa6217c138036b57ea3695 (diff)
downloadgitlab-ce-e9515dff845dfbbb51e556e4e6a4f9cf951cf239.tar.gz
remove the :gpg rspec tag
since everything (except the CurrentKeyChain method) operates on a tempoary keychain anyway we don't need this anymore.
Diffstat (limited to 'spec/models/gpg_key_spec.rb')
-rw-r--r--spec/models/gpg_key_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/gpg_key_spec.rb b/spec/models/gpg_key_spec.rb
index 3cb1723cc12..312e026a78e 100644
--- a/spec/models/gpg_key_spec.rb
+++ b/spec/models/gpg_key_spec.rb
@@ -13,7 +13,7 @@ describe GpgKey do
it { is_expected.not_to allow_value('BEGIN PGP').for(:key) }
end
- context 'callbacks', :gpg do
+ context 'callbacks' do
describe 'extract_fingerprint' do
it 'extracts the fingerprint from the gpg key' do
gpg_key = described_class.new(key: GpgHelpers::User1.public_key)
@@ -45,7 +45,7 @@ describe GpgKey do
end
end
- describe '#emails', :gpg do
+ describe '#emails' do
it 'returns the emails from the gpg key' do
gpg_key = create :gpg_key, key: GpgHelpers::User1.public_key
@@ -53,7 +53,7 @@ describe GpgKey do
end
end
- describe '#emails_with_verified_status', :gpg do
+ describe '#emails_with_verified_status' do
it 'email is verified if the user has the matching email' do
user = create :user, email: 'bette.cartwright@example.com'
gpg_key = create :gpg_key, key: GpgHelpers::User2.public_key, user: user