Check that port 3500 is listening

This commit is contained in:
James Barnett 2017-08-23 15:56:08 -05:00
parent 0345d7b4c1
commit ef4678651d
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
describe service('readme_app') do
it { should be_enabled }
it { should be_running }
end
end
describe port('3500') do
it { should be_listening }
end