mirror of
https://github.com/inspec/inspec
synced 2024-11-28 07:30:50 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
10 lines
279 B
Ruby
10 lines
279 B
Ruby
val_user = attribute('user', value: '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
|