Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Nov 23, 2022
1 parent 873e44f commit 95ac2c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vendor/
.git/
.*.sw[op]
.metadata
Expand Down
10 changes: 10 additions & 0 deletions spec/acceptance/docker_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,18 @@ class { 'hdm':
it { is_expected.to be_running }
end

# rubocop:disable RSpec/RepeatedExampleGroupBody
describe command('journalctl --unit docker-hdm --lines 500 --no-pager') do
its(:exit_status) { is_expected.to eq 0 }
end

describe command('docker container ls --all') do
its(:exit_status) { is_expected.to eq 0 }
end

describe command('docker image ls --all') do
its(:exit_status) { is_expected.to eq 0 }
end
# rubocop:enable RSpec/RepeatedExampleGroupBody
end
end

0 comments on commit 95ac2c4

Please sign in to comment.