From 7e7eb1d652a97b73e09c26c5c04e21e80d8706ab Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 31 Dec 2010 11:55:38 +0100 Subject: rather directly read the file than use the puppet function --- spec/unit/parser/functions/tfile.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec') diff --git a/spec/unit/parser/functions/tfile.rb b/spec/unit/parser/functions/tfile.rb index e64170a..1cc37d4 100644 --- a/spec/unit/parser/functions/tfile.rb +++ b/spec/unit/parser/functions/tfile.rb @@ -24,10 +24,10 @@ describe "the tfile function" do describe "when executed properly" do before :each do - Puppet::Parser::Scope.any_instance.stubs(:function_file).with(['/some_path/aa']).returns("foo1\nfoo2\n") + File.stubs(:read).with('/some_path/aa').returns("foo1\nfoo2\n") end - it "should return the content of the file by calling the puppet file function" do + it "should return the content of the file" do File.stubs(:exists?).with('/some_path/aa').returns(true) result = @scope.function_tfile(['/some_path/aa']) result.should == "foo1\nfoo2\n" -- cgit v1.2.3