1 2 3 4 5 6 7 8 9 10 11 12 13
|
require 'test_helper'
require 'rack'
class Marcel::MimeType::MagicTest < Marcel::TestCase
# These fixtures should be recognisable given only their contents. Where a generic type
# has more specific subclasses (such as application/zip), these subclasses cannot usually
# be recognised by magic alone; their name is also needed to correctly identify them.
each_content_type_fixture('magic') do |file, name, content_type|
test "gets type for #{content_type} by using only magic bytes #{name}" do
assert_equal content_type, Marcel::MimeType.for(file)
end
end
end
|