mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
11 lines
299 B
Ruby
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
|