diff options
| author | Claire McQuin <claire@getchef.com> | 2014-10-29 15:14:22 -0700 |
|---|---|---|
| committer | Claire McQuin <claire@getchef.com> | 2014-10-29 15:59:04 -0700 |
| commit | 5fed7a65a2f024d964ecf2de1bcf2911cf8a600c (patch) | |
| tree | 14cc6968e4fe4fd2485c0211088b25c645a80a4b /spec/functional/version_spec.rb | |
| parent | b92c309b0f1aa0837f76ab89d6c81c36076ceca9 (diff) | |
| download | chef-5fed7a65a2f024d964ecf2de1bcf2911cf8a600c.tar.gz | |
Update to RSpec 3.
Diffstat (limited to 'spec/functional/version_spec.rb')
| -rw-r--r-- | spec/functional/version_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functional/version_spec.rb b/spec/functional/version_spec.rb index a342206161..71ba4d5b2f 100644 --- a/spec/functional/version_spec.rb +++ b/spec/functional/version_spec.rb @@ -28,7 +28,7 @@ describe "Chef Versions" do binaries.each do |binary| it "#{binary} version should be sane" do - shell_out!("ruby #{File.join("bin", binary)} -v", :cwd => chef_dir).stdout.chomp.should == "Chef: #{Chef::VERSION}" + expect(shell_out!("ruby #{File.join("bin", binary)} -v", :cwd => chef_dir).stdout.chomp).to eq("Chef: #{Chef::VERSION}") end end |
