mirror of
https://github.com/inspec/inspec
synced 2024-12-17 08:33:21 +00:00
9b7c292d4c
Helps testing and lots of other things if we only use $stdout/$stderr. STDOUT/STDERR should only be used to restore the globals. Signed-off-by: Ryan Davis <zenspider@chef.io>
12 lines
302 B
Ruby
12 lines
302 B
Ruby
|
|
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
|