Skip to content
Snippets Groups Projects
Commit 5ae32d5a authored by Jack Nagel's avatar Jack Nagel
Browse files

Remove pointless assertion

parent d87f1fb5
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,8 @@ class CleanerTests < Test::Unit::TestCase ...@@ -22,7 +22,8 @@ class CleanerTests < Test::Unit::TestCase
f = CleanerTestBall.new f = CleanerTestBall.new
shutup { f.brew { f.install } } shutup { f.brew { f.install } }
assert_nothing_raised { Cleaner.new f } Cleaner.new f
assert_equal 0100555, (f.bin/'a.out').stat.mode assert_equal 0100555, (f.bin/'a.out').stat.mode
assert_equal 0100444, (f.lib/'fat.dylib').stat.mode assert_equal 0100444, (f.lib/'fat.dylib').stat.mode
assert_equal 0100444, (f.lib/'x86_64.dylib').stat.mode assert_equal 0100444, (f.lib/'x86_64.dylib').stat.mode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment