summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
Diffstat (limited to 'qa')
-rw-r--r--qa/qa.rb1
-rw-r--r--qa/qa/runtime/key/dsa.rb11
-rw-r--r--qa/qa/specs/features/project/deploy_key_clone_spec.rb1
-rw-r--r--qa/spec/runtime/key/dsa_spec.rb9
4 files changed, 0 insertions, 22 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index fb926dbe735..5fb9364a6ab 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -17,7 +17,6 @@ module QA
module Key
autoload :Base, 'qa/runtime/key/base'
autoload :RSA, 'qa/runtime/key/rsa'
- autoload :DSA, 'qa/runtime/key/dsa'
autoload :ECDSA, 'qa/runtime/key/ecdsa'
autoload :ED25519, 'qa/runtime/key/ed25519'
end
diff --git a/qa/qa/runtime/key/dsa.rb b/qa/qa/runtime/key/dsa.rb
deleted file mode 100644
index e984107b747..00000000000
--- a/qa/qa/runtime/key/dsa.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-module QA
- module Runtime
- module Key
- class DSA < Base
- def initialize
- super('dsa', 1024)
- end
- end
- end
- end
-end
diff --git a/qa/qa/specs/features/project/deploy_key_clone_spec.rb b/qa/qa/specs/features/project/deploy_key_clone_spec.rb
index 3465fe109ee..424a8e18257 100644
--- a/qa/qa/specs/features/project/deploy_key_clone_spec.rb
+++ b/qa/qa/specs/features/project/deploy_key_clone_spec.rb
@@ -18,7 +18,6 @@ module QA
Runtime::Key::RSA.new(2048),
Runtime::Key::RSA.new(4096),
Runtime::Key::RSA.new(8192),
- Runtime::Key::DSA.new,
Runtime::Key::ECDSA.new(256),
Runtime::Key::ECDSA.new(384),
Runtime::Key::ECDSA.new(521),
diff --git a/qa/spec/runtime/key/dsa_spec.rb b/qa/spec/runtime/key/dsa_spec.rb
deleted file mode 100644
index 600e7ce4ee6..00000000000
--- a/qa/spec/runtime/key/dsa_spec.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-describe QA::Runtime::Key::DSA do
- describe '#public_key' do
- subject { described_class.new.public_key }
-
- it 'generates a public DSA key' do
- expect(subject).to match(%r{\Assh\-dss AAAA[0-9A-Za-z+/]+={0,3}})
- end
- end
-end