1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# 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
|