Move tests to blob

This commit is contained in:
Joshua Peek
2011-05-13 12:46:57 -05:00
parent 0009cbab89
commit 6ead7d8f37
2 changed files with 18 additions and 18 deletions

View File

@@ -63,22 +63,4 @@ class TestPathname < Test::Unit::TestCase
assert_equal 'text', Pathname.new("file.txt").media_type
assert_equal 'text', Pathname.new("defun.kt").media_type
end
# def test_file
# assert Pathname.new("octocat.png").file?
# assert Pathname.new("linguist.gem").file?
# end
# def test_text
# assert Pathname.new("file.txt").text?
# assert Pathname.new("file.json").text?
# end
# def test_image
# assert Pathname.new("octocat.png").image?
# assert Pathname.new("octocat.jpg").image?
# assert Pathname.new("octocat.jpeg").image?
# assert Pathname.new("octocat.gif").image?
# assert !Pathname.new("octocat.psd").image?
# end
end