mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
10 lines
284 B
Ruby
10 lines
284 B
Ruby
control "test_control_01" do
|
|
describe input("test_input_01", value: "value_from_dsl") do
|
|
it { should cmp "value_from_cli_01"}
|
|
end
|
|
end
|
|
control "test_control_02" do
|
|
describe input("test_input_02", value: "value_from_dsl") do
|
|
it { should cmp "value_from_cli_02"}
|
|
end
|
|
end
|