Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Reigel <mail@koffeinfrei.org>2017-06-12 17:16:33 +0300
committerAlexis Reigel <mail@koffeinfrei.org>2017-07-27 16:42:53 +0300
commit7e13d96715750f74db399bf40ee4ec9679bbe806 (patch)
treeb26af883e7055a7d8990bdc2e168117b260bbc7f /spec/lib/gitlab/gpg_spec.rb
parentd1101ec02ec718d0ce15e76217980f6fa21c9089 (diff)
don't sync to keychain file
Diffstat (limited to 'spec/lib/gitlab/gpg_spec.rb')
-rw-r--r--spec/lib/gitlab/gpg_spec.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/spec/lib/gitlab/gpg_spec.rb b/spec/lib/gitlab/gpg_spec.rb
index c0df719c0c2..bdcf9ee0e65 100644
--- a/spec/lib/gitlab/gpg_spec.rb
+++ b/spec/lib/gitlab/gpg_spec.rb
@@ -29,36 +29,3 @@ describe Gitlab::Gpg do
end
end
end
-
-describe Gitlab::Gpg::CurrentKeyChain, :gpg do
- describe '.emails' do
- it 'returns the emails' do
- Gitlab::Gpg::CurrentKeyChain.add(GpgHelpers::User2.public_key)
-
- expect(
- described_class.emails(GpgHelpers::User2.fingerprint)
- ).to match_array GpgHelpers::User2.emails
- end
- end
-
- describe '.add', :gpg do
- it 'stores the key in the keychain' do
- expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).to eq []
-
- Gitlab::Gpg::CurrentKeyChain.add(GpgHelpers::User1.public_key)
-
- expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).not_to eq []
- end
- end
-
- describe '.remove', :gpg do
- it 'removes the key from the keychain' do
- Gitlab::Gpg::CurrentKeyChain.add(GpgHelpers::User1.public_key)
- expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).not_to eq []
-
- Gitlab::Gpg::CurrentKeyChain.remove(GpgHelpers::User1.fingerprint)
-
- expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).to eq []
- end
- end
-end