2011-05-11 03:44:02 -04:00
|
|
|
require File.expand_path('../helper', __FILE__)
|
2010-10-26 14:50:07 -04:00
|
|
|
|
|
|
|
begin
|
|
|
|
require 'slim'
|
|
|
|
|
|
|
|
class SlimTest < Test::Unit::TestCase
|
|
|
|
def slim_app(&block)
|
|
|
|
mock_app {
|
|
|
|
set :views, File.dirname(__FILE__) + '/views'
|
|
|
|
get '/', &block
|
|
|
|
}
|
|
|
|
get '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders inline slim strings' do
|
|
|
|
slim_app { slim "h1 Hiya\n" }
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Hiya</h1>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders .slim files in views path' do
|
|
|
|
slim_app { slim :hello }
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Hello From Slim</h1>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with inline layouts" do
|
|
|
|
mock_app {
|
|
|
|
layout { %(h1\n | THIS. IS. \n == yield.upcase ) }
|
2010-11-05 06:41:54 -04:00
|
|
|
get('/') { slim 'em Sparta' }
|
2010-10-26 14:50:07 -04:00
|
|
|
}
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>THIS. IS. <EM>SPARTA</EM></h1>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with file layouts" do
|
|
|
|
slim_app {
|
2010-11-05 06:41:54 -04:00
|
|
|
slim '| Hello World', :layout => :layout2
|
2010-10-26 14:50:07 -04:00
|
|
|
}
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Slim Layout!</h1><p>Hello World</p>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises error if template not found" do
|
|
|
|
mock_app {
|
|
|
|
get('/') { slim :no_such_template }
|
|
|
|
}
|
|
|
|
assert_raise(Errno::ENOENT) { get('/') }
|
|
|
|
end
|
|
|
|
|
|
|
|
HTML4_DOCTYPE = "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">"
|
|
|
|
|
|
|
|
it "passes slim options to the slim engine" do
|
2011-09-01 13:54:50 -04:00
|
|
|
mock_app { get('/') { slim "x foo='bar'", :attr_wrapper => "'" }}
|
2010-10-26 14:50:07 -04:00
|
|
|
get '/'
|
|
|
|
assert ok?
|
2011-09-01 13:54:50 -04:00
|
|
|
assert_body "<x foo='bar'></x>"
|
2010-10-26 14:50:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "passes default slim options to the slim engine" do
|
2011-09-01 13:54:50 -04:00
|
|
|
mock_app do
|
|
|
|
set :slim, :attr_wrapper => "'"
|
|
|
|
get('/') { slim "x foo='bar'" }
|
|
|
|
end
|
2010-10-26 14:50:07 -04:00
|
|
|
get '/'
|
|
|
|
assert ok?
|
2011-09-01 13:54:50 -04:00
|
|
|
assert_body "<x foo='bar'></x>"
|
2010-10-26 14:50:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "merges the default slim options with the overrides and passes them to the slim engine" do
|
2011-09-01 13:54:50 -04:00
|
|
|
mock_app do
|
|
|
|
set :slim, :attr_wrapper => "'"
|
|
|
|
get('/') { slim "x foo='bar'" }
|
|
|
|
get('/other') { slim "x foo='bar'", :attr_wrapper => '"' }
|
|
|
|
end
|
2010-10-26 14:50:07 -04:00
|
|
|
get '/'
|
|
|
|
assert ok?
|
2011-09-01 13:54:50 -04:00
|
|
|
assert_body "<x foo='bar'></x>"
|
|
|
|
get '/other'
|
2010-11-05 12:00:08 -04:00
|
|
|
assert ok?
|
2011-09-01 13:54:50 -04:00
|
|
|
assert_body '<x foo="bar"></x>'
|
2010-10-26 14:50:07 -04:00
|
|
|
end
|
|
|
|
end
|
2011-01-25 03:27:15 -05:00
|
|
|
|
|
|
|
rescue LoadError
|
2010-10-26 14:50:07 -04:00
|
|
|
warn "#{$!.to_s}: skipping slim tests"
|
|
|
|
end
|