mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
77b4e45175
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
control "01_not_waivered_passes" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "02_not_waivered_fails" do
|
|
describe(true) { it { should eq false } }
|
|
end
|
|
|
|
control "03_waivered_no_expiry_not_skipped_passes" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "04_waivered_no_expiry_not_skipped_fails" do
|
|
describe(true) { it { should eq false } }
|
|
end
|
|
|
|
control "05_waivered_no_expiry_skipped" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "06_waivered_expiry_in_past_not_skipped_passes" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "07_waivered_expiry_in_past_not_skipped_fails" do
|
|
describe(true) { it { should eq false } }
|
|
end
|
|
|
|
control "08_waivered_expiry_in_past_skipped" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "09_waivered_expiry_in_future_not_skipped_passes" do
|
|
describe(true) { it { should eq true } }
|
|
end
|
|
|
|
control "10_waivered_expiry_in_future_not_skipped_fails" do
|
|
describe(true) { it { should eq false } }
|
|
end
|
|
|
|
control "11_waivered_expiry_in_future_skipped" do
|
|
describe(true) { it { should eq true } }
|
|
end
|