summaryrefslogtreecommitdiffstats
path: root/spec/integration/parser
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-11-15 19:41:43 +1100
committerMarkus Roberts <Markus@reality.com>2010-11-16 10:54:22 -0800
commitc8b6fb5bed057bf25a25c9e1b3f55bedf64ba775 (patch)
treeb21dda185beaef1779cf579d9d48c6dd2d5a2067 /spec/integration/parser
parentd221c05e08627b9dffede6c56e210edca3b04c03 (diff)
downloadpuppet-c8b6fb5bed057bf25a25c9e1b3f55bedf64ba775.tar.gz
puppet-c8b6fb5bed057bf25a25c9e1b3f55bedf64ba775.tar.xz
puppet-c8b6fb5bed057bf25a25c9e1b3f55bedf64ba775.zip
Fixed #5296 - test warnings messages
Diffstat (limited to 'spec/integration/parser')
-rw-r--r--spec/integration/parser/ruby_manifest_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/parser/ruby_manifest_spec.rb b/spec/integration/parser/ruby_manifest_spec.rb
index af110d3b3..de6f4628c 100644
--- a/spec/integration/parser/ruby_manifest_spec.rb
+++ b/spec/integration/parser/ruby_manifest_spec.rb
@@ -69,7 +69,7 @@ describe "Pure ruby manifests" do
write_file('foo.rb', "hostclass 'bar' do file 'test_file', :owner => 'root', :mode => '644' end")
catalog = compile("import 'foo'\ninclude bar")
file = catalog.resource("File[test_file]")
- file.should be_a Puppet::Resource
+ file.should be_a(Puppet::Resource)
file.type.should == 'File'
file.title.should == 'test_file'
file.exported.should_not be