unless File.exists?(path)
dir = File.dirname(path)
unless File.directory?(dir)
- Puppet::Util.recmkdir(dir,0700)
+ require 'fileutils'
+ FileUtils.mkdir_p(dir, :mode => 0700)
end
require 'fileutils'
FileUtils.touch(path)
it "should create the path if it does not exist" do
File.stubs(:exists?).with('/some_path/aa').returns(false)
File.stubs(:directory?).with('/some_path').returns(false)
- Puppet::Util.expects(:recmkdir).with("/some_path",0700)
+ FileUtils.expects(:mkdir_p).with("/some_path",:mode => 0700)
FileUtils.expects(:touch).with('/some_path/aa')
result = @scope.function_tfile(['/some_path/aa'])
result.should == "foo1\nfoo2\n"