Sha256: 3f8c3849591653e024953123e28d4c058676296840bb892764e0164d1f90d889
Contents?: true
Size: 1.57 KB
Versions: 5
Compression:
Stored size: 1.57 KB
Contents
# -*- ruby encoding: utf-8 -*- require 'mime/types' require 'minitest_helper' class TestMIMETypesLoader < Minitest::Test def setup @path = File.expand_path('../fixture', __FILE__) @loader = MIME::Types::Loader.new(@path) @bad_path = File.expand_path('../bad-fixtures', __FILE__) end def assert_correctly_loaded(types) assert_includes(types, 'application/1d-interleaved-parityfec') assert_includes(types['application/acad'].first.references, 'LTSW') assert_equal([%w(WebM http://www.webmproject.org/code/specs/container/)], types['audio/webm'].first.urls) assert_equal(%w(webm), types['audio/webm'].first.extensions) refute(types['audio/webm'].first.registered?) assert_equal('Fixes a bug with IE6 and progressive JPEGs', types['image/pjpeg'].first.docs) assert(types['application/x-apple-diskimage'].first.system?) assert_equal(/mac/, types['application/x-apple-diskimage'].first.system) assert(types['audio/vnd.qcelp'].first.obsolete?) assert_equal(%w(audio/QCELP), types['audio/vnd.qcelp'].first.use_instead) end def test_load_yaml assert_correctly_loaded(@loader.load_yaml) end def test_load_json assert_correctly_loaded(@loader.load_json) end def test_load_v1 assert_correctly_loaded(@loader.load_v1) end def test_malformed_v1 assert_output(nil, /1: Parsing error in v1 MIME type definition/) { assert_raises(MIME::Types::Loader::BadV1Format) { MIME::Types::Loader.load_from_v1(File.join(@bad_path, 'malformed')) } } end end
Version data entries
5 entries across 5 versions & 3 rubygems