Skip to content

Commit

Permalink
Adds test for deletion of temporary installation and correct location…
Browse files Browse the repository at this point in the history
… of final installation

Signed-off-by: Graham Davison <[email protected]>
  • Loading branch information
gdavison committed Jun 19, 2020
1 parent 569e35f commit ff71342
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/integration/chef_automatev2/test_chef_automatev2_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
# its('exit_status') { should eq 0 }
# end

describe file('/usr/local/bin/chef-automate') do
it { should_not exist }
end

describe file('/usr/bin/chef-automate') do
it { should exist }
end

describe command('chef-automate version') do
its('exit_status') { should eq 0 }
end
Expand Down

0 comments on commit ff71342

Please sign in to comment.