inspec/examples/profile-attribute/controls/example.rb
2016-06-14 02:49:47 +02:00

11 lines
299 B
Ruby

# encoding: utf-8
val_user = attribute('user', default: 'alice', description: 'An identification for the user')
val_password = attribute('password', description: 'A value for the password')
describe val_user do
it { should eq 'bob' }
end
describe val_password do
it { should eq 'secret' }
end