diff options
author | Luke Kanies <luke@madstop.com> | 2008-02-18 22:05:34 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-02-18 22:05:34 -0600 |
commit | 39f9818276e49020c1a6db9667371f7617d5cc93 (patch) | |
tree | 05c0bb9c1d2e1627792814797ba3a26479306739 /spec/unit | |
parent | 9c23d214a3181e282c92568095b341d1b3d02f6c (diff) | |
download | puppet-39f9818276e49020c1a6db9667371f7617d5cc93.tar.gz puppet-39f9818276e49020c1a6db9667371f7617d5cc93.tar.xz puppet-39f9818276e49020c1a6db9667371f7617d5cc93.zip |
Removing some extraneous debugging from a test.
Diffstat (limited to 'spec/unit')
-rwxr-xr-x | spec/unit/ral/types/file.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/spec/unit/ral/types/file.rb b/spec/unit/ral/types/file.rb index 9ff6dc977..62fe2f677 100755 --- a/spec/unit/ral/types/file.rb +++ b/spec/unit/ral/types/file.rb @@ -47,11 +47,8 @@ describe Puppet::Type::File do # create the file, because we only get the problem when it starts # out absent. File.open(@file[:path], "w") { |f| f.puts "a" } - Puppet::Util::Log.level = :debug - Puppet::Util::Log.newdestination :console @file.expects(:write).never - @filesource.server.stubs(:describe).returns("493\tfile\t100\t0\t{md5}3f5fef3bddbc4398c46a7bd7ba7b3af7") @filesource.server.stubs(:retrieve).raises(RuntimeError) @file.property(:source).retrieve |