test/utf8_decoding_test.rb in bencode-0.6.0 vs test/utf8_decoding_test.rb in bencode-0.7.0
- old
+ new
@@ -1,12 +1,11 @@
require 'test/environment'
-class UTF8DecodingTest < Test::Unit::TestCase
+class UTF8DecodingTest < MiniTest::Unit::TestCase
context "The BEncode decoder" do
should "be able to handle UTF8-encoded data" do
- assert_nothing_raised do
- BEncode.load_file('test/fixtures/test.torrent')
- end
+ BEncode.load_file('test/fixtures/test.torrent')
+ pass
end
end
end