mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-10-28 10:33:37 +00:00
11 lines
258 B
Ruby
11 lines
258 B
Ruby
require 'spec_helper_system'
|
|
|
|
describe 'basic tests:' do
|
|
# Using puppet_apply as a subject
|
|
context puppet_apply 'notice("foo")' do
|
|
its(:stdout) { should =~ /foo/ }
|
|
its(:stderr) { should be_empty }
|
|
its(:exit_code) { should be_zero }
|
|
end
|
|
end
|