diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2018-03-17 01:30:55 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2018-03-29 19:40:32 +0800 |
commit | 187711c1b020514fd3c05360b4809f10369ef755 (patch) | |
tree | f05972c43a4f717872e711ea569ae034a43d8218 /qa/spec | |
parent | b1625d39f5b6e37ccccd0c996dd2db2f7f37730d (diff) | |
download | gitlab-ce-187711c1b020514fd3c05360b4809f10369ef755.tar.gz |
Remove test against DSA ssh keys because
we're not really supporting them out of the box. See:
https://gitlab.com/gitlab-org/gitlab-ce/issues/44363
Diffstat (limited to 'qa/spec')
-rw-r--r-- | qa/spec/runtime/key/dsa_spec.rb | 9 |
1 files changed, 0 insertions, 9 deletions
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 |