mirror of
https://github.com/inspec/inspec
synced 2024-12-22 11:03:11 +00:00
296158c447
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
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
|