Sha256: 817b086149f74d5ff96768237fc94c59ccb0d518ee002459451615a6a4a399f5
Contents?: true
Size: 949 Bytes
Versions: 75
Compression:
Stored size: 949 Bytes
Contents
# frozen_string_literal: true require 'mime/types' require 'minitest_helper' describe MIME::Types::Loader do 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_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['audio/vnd.qcelp'].first.obsolete?) assert_equal('audio/QCELP', types['audio/vnd.qcelp'].first.use_instead) end it 'loads YAML files correctly' do assert_correctly_loaded @loader.load_yaml end it 'loads JSON files correctly' do assert_correctly_loaded @loader.load_json end end
Version data entries
75 entries across 41 versions & 8 rubygems