test/spec_mime.rb in rack-1.5.0.beta.1 vs test/spec_mime.rb in rack-1.5.0.beta.2
- old
+ new
@@ -2,50 +2,50 @@
describe Rack::Mime do
it "should return the fallback mime-type for files with no extension" do
fallback = 'image/jpg'
- Rack::Mime.mime_type(File.extname('no_ext'), fallback).should == fallback
+ Rack::Mime.mime_type(File.extname('no_ext'), fallback).should.equal fallback
end
it "should always return 'application/octet-stream' for unknown file extensions" do
unknown_ext = File.extname('unknown_ext.abcdefg')
- Rack::Mime.mime_type(unknown_ext).should == 'application/octet-stream'
+ Rack::Mime.mime_type(unknown_ext).should.equal 'application/octet-stream'
end
it "should return the mime-type for a given extension" do
# sanity check. it would be infeasible test every single mime-type.
- Rack::Mime.mime_type(File.extname('image.jpg')).should == 'image/jpeg'
+ Rack::Mime.mime_type(File.extname('image.jpg')).should.equal 'image/jpeg'
end
it "should support null fallbacks" do
- Rack::Mime.mime_type('.nothing', nil).should == nil
+ Rack::Mime.mime_type('.nothing', nil).should.equal nil
end
it "should match exact mimes" do
- Rack::Mime.match?('text/html', 'text/html').should == true
- Rack::Mime.match?('text/html', 'text/meme').should == false
- Rack::Mime.match?('text', 'text').should == true
- Rack::Mime.match?('text', 'binary').should == false
+ Rack::Mime.match?('text/html', 'text/html').should.equal true
+ Rack::Mime.match?('text/html', 'text/meme').should.equal false
+ Rack::Mime.match?('text', 'text').should.equal true
+ Rack::Mime.match?('text', 'binary').should.equal false
end
it "should match class wildcard mimes" do
- Rack::Mime.match?('text/html', 'text/*').should == true
- Rack::Mime.match?('text/plain', 'text/*').should == true
- Rack::Mime.match?('application/json', 'text/*').should == false
- Rack::Mime.match?('text/html', 'text').should == true
+ Rack::Mime.match?('text/html', 'text/*').should.equal true
+ Rack::Mime.match?('text/plain', 'text/*').should.equal true
+ Rack::Mime.match?('application/json', 'text/*').should.equal false
+ Rack::Mime.match?('text/html', 'text').should.equal true
end
it "should match full wildcards" do
- Rack::Mime.match?('text/html', '*').should == true
- Rack::Mime.match?('text/plain', '*').should == true
- Rack::Mime.match?('text/html', '*/*').should == true
- Rack::Mime.match?('text/plain', '*/*').should == true
+ Rack::Mime.match?('text/html', '*').should.equal true
+ Rack::Mime.match?('text/plain', '*').should.equal true
+ Rack::Mime.match?('text/html', '*/*').should.equal true
+ Rack::Mime.match?('text/plain', '*/*').should.equal true
end
it "should match type wildcard mimes" do
- Rack::Mime.match?('text/html', '*/html').should == true
- Rack::Mime.match?('text/plain', '*/plain').should == true
+ Rack::Mime.match?('text/html', '*/html').should.equal true
+ Rack::Mime.match?('text/plain', '*/plain').should.equal true
end
end