mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
e16bc71590
The exception handler was only catching RuntimeError, which probably should not be caught by the harness (so a test fails), when it should have been catching LoadError exceptions (module not present to test). Signed-off-by: Konstantin Haase <konstantin.mailinglists@googlemail.com>
88 lines
2.2 KiB
Ruby
88 lines
2.2 KiB
Ruby
require File.dirname(__FILE__) + '/helper'
|
|
|
|
begin
|
|
require 'coffee-script'
|
|
|
|
class CoffeeTest < Test::Unit::TestCase
|
|
def coffee_app(options = {}, &block)
|
|
mock_app {
|
|
set :views, File.dirname(__FILE__) + '/views'
|
|
set(options)
|
|
get '/', &block
|
|
}
|
|
get '/'
|
|
end
|
|
|
|
it 'renders inline Coffee strings' do
|
|
coffee_app { coffee "alert 'Aye!'\n" }
|
|
assert ok?
|
|
assert_equal "(function() {\n alert('Aye!');\n}).call(this);\n", body
|
|
end
|
|
|
|
it 'defaults content type to javascript' do
|
|
coffee_app { coffee "alert 'Aye!'\n" }
|
|
assert ok?
|
|
assert_equal "application/javascript;charset=utf-8", response['Content-Type']
|
|
end
|
|
|
|
it 'defaults allows setting content type per route' do
|
|
coffee_app do
|
|
content_type :html
|
|
coffee "alert 'Aye!'\n"
|
|
end
|
|
assert ok?
|
|
assert_equal "text/html;charset=utf-8", response['Content-Type']
|
|
end
|
|
|
|
it 'defaults allows setting content type globally' do
|
|
coffee_app(:coffee => { :content_type => 'html' }) do
|
|
coffee "alert 'Aye!'\n"
|
|
end
|
|
assert ok?
|
|
assert_equal "text/html;charset=utf-8", response['Content-Type']
|
|
end
|
|
|
|
it 'renders .coffee files in views path' do
|
|
coffee_app { coffee :hello }
|
|
assert ok?
|
|
assert_equal "(function() {\n alert(\"Aye!\");\n}).call(this);\n", body
|
|
end
|
|
|
|
it 'ignores the layout option' do
|
|
coffee_app { coffee :hello, :layout => :layout2 }
|
|
assert ok?
|
|
assert_equal "(function() {\n alert(\"Aye!\");\n}).call(this);\n", body
|
|
end
|
|
|
|
it "raises error if template not found" do
|
|
mock_app {
|
|
get('/') { coffee :no_such_template }
|
|
}
|
|
assert_raise(Errno::ENOENT) { get('/') }
|
|
end
|
|
|
|
it "passes coffee options to the coffee engine" do
|
|
coffee_app {
|
|
coffee "alert 'Aye!'\n",
|
|
:no_wrap => true
|
|
}
|
|
assert ok?
|
|
assert_equal "alert('Aye!');", body
|
|
end
|
|
|
|
it "passes default coffee options to the coffee engine" do
|
|
mock_app {
|
|
set :coffee, :no_wrap => true # default coffee style is :nested
|
|
get '/' do
|
|
coffee "alert 'Aye!'\n"
|
|
end
|
|
}
|
|
get '/'
|
|
assert ok?
|
|
assert_equal "alert('Aye!');", body
|
|
end
|
|
end
|
|
|
|
rescue LoadError
|
|
warn "#{$!.to_s}: skipping coffee tests"
|
|
end
|