test/bittorrent_test.rb in bencode-0.6.0 vs test/bittorrent_test.rb in bencode-0.7.0
- old
+ new
@@ -1,11 +1,10 @@
require 'test/environment'
-class BitTorrentTest < Test::Unit::TestCase
+class BitTorrentTest < MiniTest::Unit::TestCase
should "load a bencoded torrent file" do
- assert_nothing_raised do
- BEncode.load_file("test/fixtures/python.torrent")
- end
+ BEncode.load_file("test/fixtures/python.torrent")
+ pass
end
end