Skip to content

Commit

Permalink
Change minitest class name. #9
Browse files Browse the repository at this point in the history
minitest's class name was renamed from MiniTest::Unit::TestCase to Minitest::Test in version 5.0.
  • Loading branch information
zuku committed Dec 25, 2014
1 parent 6052f33 commit 7032fb6
Show file tree
Hide file tree
Showing 82 changed files with 82 additions and 82 deletions.
2 changes: 1 addition & 1 deletion test/bmff/box/test_audio_sample_entry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxAudioSampleEntry < MiniTest::Unit::TestCase
class TestBMFFBoxAudioSampleEntry < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxBase < MiniTest::Unit::TestCase
class TestBMFFBoxBase < Minitest::Test
def test_parse_largesize
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_bit_rate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxBitRate < MiniTest::Unit::TestCase
class TestBMFFBoxBitRate < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_chunk_large_offset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxChunkLargeOffset < MiniTest::Unit::TestCase
class TestBMFFBoxChunkLargeOffset < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_chunk_offset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxChunkOffset < MiniTest::Unit::TestCase
class TestBMFFBoxChunkOffset < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_clean_aperture.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxCleanAperture < MiniTest::Unit::TestCase
class TestBMFFBoxCleanAperture < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_colour_information.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxColourInformation < MiniTest::Unit::TestCase
class TestBMFFBoxColourInformation < Minitest::Test
def test_parse_nclx
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_compact_sample_size.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxCompactSampleSize < MiniTest::Unit::TestCase
class TestBMFFBoxCompactSampleSize < Minitest::Test
def test_parse_filed_size_4
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_composition_offset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxCompositionOffset < MiniTest::Unit::TestCase
class TestBMFFBoxCompositionOffset < Minitest::Test
def test_parse_v0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_composition_to_decode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxCompositionToDecode < MiniTest::Unit::TestCase
class TestBMFFBoxCompositionToDecode < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_copyright.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxCopyright < MiniTest::Unit::TestCase
class TestBMFFBoxCopyright < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_data_entry_url.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxDataEntryUrl < MiniTest::Unit::TestCase
class TestBMFFBoxDataEntryUrl < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_data_entry_urn.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxDataEntryUrn < MiniTest::Unit::TestCase
class TestBMFFBoxDataEntryUrn < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_data_information.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxDataInformation < MiniTest::Unit::TestCase
class TestBMFFBoxDataInformation < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_data_reference.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxDataReference < MiniTest::Unit::TestCase
class TestBMFFBoxDataReference < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_degradation_priority.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxDegradationPriority < MiniTest::Unit::TestCase
class TestBMFFBoxDegradationPriority < Minitest::Test
class DummyBox
attr_accessor :box
def find(type)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_edit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxEdit < MiniTest::Unit::TestCase
class TestBMFFBoxEdit < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_edit_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxEditList < MiniTest::Unit::TestCase
class TestBMFFBoxEditList < Minitest::Test
def test_parse_v0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_file_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxFileType < MiniTest::Unit::TestCase
class TestBMFFBoxFileType < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_free_space.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxFreeSpace < MiniTest::Unit::TestCase
class TestBMFFBoxFreeSpace < Minitest::Test
def test_parse_free
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxHandler < MiniTest::Unit::TestCase
class TestBMFFBoxHandler < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_hint_media_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxHintMediaHeader < MiniTest::Unit::TestCase
class TestBMFFBoxHintMediaHeader < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_hint_sample_entry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxHintSampleEntry < MiniTest::Unit::TestCase
class TestBMFFBoxHintSampleEntry < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_level_assignment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxLevelAssignment < MiniTest::Unit::TestCase
class TestBMFFBoxLevelAssignment < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_media.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMedia < MiniTest::Unit::TestCase
class TestBMFFBoxMedia < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_media_data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMediaData < MiniTest::Unit::TestCase
class TestBMFFBoxMediaData < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_media_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMediaHeader < MiniTest::Unit::TestCase
class TestBMFFBoxMediaHeader < Minitest::Test
def test_parse_v0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_media_information.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMediaInformation < MiniTest::Unit::TestCase
class TestBMFFBoxMediaInformation < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovie < MiniTest::Unit::TestCase
class TestBMFFBoxMovie < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_extends.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieExtends < MiniTest::Unit::TestCase
class TestBMFFBoxMovieExtends < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_extends_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieExtendsHeader < MiniTest::Unit::TestCase
class TestBMFFBoxMovieExtendsHeader < Minitest::Test
def test_parse_v0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_fragment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieFragment < MiniTest::Unit::TestCase
class TestBMFFBoxMovieFragment < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_fragment_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieFragmentHeader < MiniTest::Unit::TestCase
class TestBMFFBoxMovieFragmentHeader < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_fragment_random_access.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieFragmentRandomAccess < MiniTest::Unit::TestCase
class TestBMFFBoxMovieFragmentRandomAccess < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_fragment_random_access_offset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieFragmentRandomAccessOffset < MiniTest::Unit::TestCase
class TestBMFFBoxMovieFragmentRandomAccessOffset < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_movie_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxMovieHeader < MiniTest::Unit::TestCase
class TestBMFFBoxMovieHeader < Minitest::Test
def test_parse_v0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_null_media_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxNullMediaHeader < MiniTest::Unit::TestCase
class TestBMFFBoxNullMediaHeader < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_original_format.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxOriginalFormat < MiniTest::Unit::TestCase
class TestBMFFBoxOriginalFormat < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_padding_bits.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxPaddingBits < MiniTest::Unit::TestCase
class TestBMFFBoxPaddingBits < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_pixel_aspect_ratio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxPixelAspectRatio < MiniTest::Unit::TestCase
class TestBMFFBoxPixelAspectRatio < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_progressive_download_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxProgressiveDownloadInfo < MiniTest::Unit::TestCase
class TestBMFFBoxProgressiveDownloadInfo < Minitest::Test
def test_parse
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_protection_sheme_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxProtectionSchemeInfo < MiniTest::Unit::TestCase
class TestBMFFBoxProtectionSchemeInfo < Minitest::Test
def test_parse_only_original_format
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_protection_system_specific_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxProtectionSystemSpecificHeader < MiniTest::Unit::TestCase
class TestBMFFBoxProtectionSystemSpecificHeader < Minitest::Test
def test_parse_playready
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down
2 changes: 1 addition & 1 deletion test/bmff/box/test_sample_auxiliary_information_offsets.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bmff/box'
require 'stringio'

class TestBMFFBoxSampleAuxiliaryInformationOffsets < MiniTest::Unit::TestCase
class TestBMFFBoxSampleAuxiliaryInformationOffsets < Minitest::Test
def test_parse_v0_flags_0
io = StringIO.new("", "r+:ascii-8bit")
io.extend(BMFF::BinaryAccessor)
Expand Down

0 comments on commit 7032fb6

Please sign in to comment.