Sha256: 2010692d60d2513ea98b80bd756b231f4b1c3f0ec3feaa24d59b3fc352a0bced
Contents?: true
Size: 903 Bytes
Versions: 10
Compression:
Stored size: 903 Bytes
Contents
require 'spec_helper' describe Paperclip::FileCommandContentTypeDetector do it 'returns a content type based on the content of the file' do tempfile = Tempfile.new("something") tempfile.write("This is a file.") tempfile.rewind assert_equal "text/plain", Paperclip::FileCommandContentTypeDetector.new(tempfile.path).detect tempfile.close end it 'returns a sensible default when the file command is missing' do Paperclip.stubs(:run).raises(Cocaine::CommandLineError.new) @filename = "/path/to/something" assert_equal "application/octet-stream", Paperclip::FileCommandContentTypeDetector.new(@filename).detect end it 'returns a sensible default on the odd chance that run returns nil' do Paperclip.stubs(:run).returns(nil) assert_equal "application/octet-stream", Paperclip::FileCommandContentTypeDetector.new("windows").detect end end
Version data entries
10 entries across 8 versions & 2 rubygems