Remove debug statements

This commit is contained in:
Chris Wanstrath 2009-09-21 19:37:55 -07:00
parent 8e1d049ee4
commit a22f0c5ee6

View File

@ -17,7 +17,6 @@ class FakeFSTest < Test::Unit::TestCase
def xtest_can_be_initialized_with_an_existing_directory
fs = FileSystem
fs.clone(File.expand_path(File.dirname(__FILE__))).inspect
puts fs.files.inspect
assert_equal 1, fs.files.size
end
@ -706,7 +705,6 @@ class FakeFSTest < Test::Unit::TestCase
dir = Dir.new('/this/path/should/be/here')
d = dir.seek 1
puts d
assert d == '..'
assert dir.pos == 1
end