mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
692e660140
* Fix #1617 Add dh_params resource Signed-off-by: Doc Walker <4-20ma@wvfans.net>
13 lines
319 B
Ruby
13 lines
319 B
Ruby
# encoding: utf-8
|
|
|
|
if os.windows?
|
|
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on Linux.\033[0m"
|
|
return
|
|
end
|
|
|
|
describe dh_params('/tmp/example.dh_pem') do
|
|
it { should be_dh_params }
|
|
it { should be_valid }
|
|
its('generator') { should eq 2 }
|
|
its('prime_length') { should eq 2048 }
|
|
end
|