summaryrefslogtreecommitdiff
path: root/spec/unit/dsl
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2014-06-09 09:53:26 -0700
committerdanielsdeleo <dan@getchef.com>2014-06-09 09:53:26 -0700
commit10671179a581e43310c0b017c1577302d5852b53 (patch)
tree0f95f814a1a031486524ceabac5595cc44ef650c /spec/unit/dsl
parentd9f6011d658e8fe023347fab240fb17cec222565 (diff)
downloadohai-10671179a581e43310c0b017c1577302d5852b53.tar.gz
Switch all `be_BOOL` to `be BOOL`
Diffstat (limited to 'spec/unit/dsl')
-rw-r--r--spec/unit/dsl/plugin_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/dsl/plugin_spec.rb b/spec/unit/dsl/plugin_spec.rb
index a88f44d0..558d661a 100644
--- a/spec/unit/dsl/plugin_spec.rb
+++ b/spec/unit/dsl/plugin_spec.rb
@@ -22,7 +22,7 @@ require File.expand_path("../../../spec_helper.rb", __FILE__)
shared_examples "Ohai::DSL::Plugin" do
context "#initialize" do
it "should set has_run? to false" do
- plugin.has_run?.should be_false
+ plugin.has_run?.should be false
end
it "should set the correct plugin version" do
@@ -48,7 +48,7 @@ shared_examples "Ohai::DSL::Plugin" do
it "should set has_run? to true" do
plugin.run
- plugin.has_run?.should be_true
+ plugin.has_run?.should be true
end
end
@@ -69,7 +69,7 @@ shared_examples "Ohai::DSL::Plugin" do
it "should set has_run? to true" do
plugin.run
- plugin.has_run?.should be_true
+ plugin.has_run?.should be true
end
end
end