2011-05-11 03:44:02 -04:00
|
|
|
require File.expand_path('../helper', __FILE__)
|
2011-04-15 05:51:35 -04:00
|
|
|
|
|
|
|
begin
|
|
|
|
require 'creole'
|
|
|
|
|
2015-01-10 14:30:47 -05:00
|
|
|
class CreoleTest < Minitest::Test
|
2011-04-15 05:51:35 -04:00
|
|
|
def creole_app(&block)
|
|
|
|
mock_app do
|
|
|
|
set :views, File.dirname(__FILE__) + '/views'
|
2012-05-21 17:21:59 -04:00
|
|
|
get('/', &block)
|
2011-04-15 05:51:35 -04:00
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders inline creole strings' do
|
|
|
|
creole_app { creole '= Hiya' }
|
|
|
|
assert ok?
|
|
|
|
assert_body "<h1>Hiya</h1>"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders .creole files in views path' do
|
|
|
|
creole_app { creole :hello }
|
|
|
|
assert ok?
|
|
|
|
assert_body "<h1>Hello From Creole</h1>"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises error if template not found" do
|
|
|
|
mock_app { get('/') { creole :no_such_template } }
|
2015-01-10 14:30:47 -05:00
|
|
|
assert_raises(Errno::ENOENT) { get('/') }
|
2011-04-15 05:51:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with inline layouts" do
|
|
|
|
mock_app do
|
|
|
|
layout { 'THIS. IS. #{yield.upcase}!' }
|
|
|
|
get('/') { creole 'Sparta', :layout_engine => :str }
|
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
|
|
|
assert_like 'THIS. IS. <P>SPARTA</P>!', body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with file layouts" do
|
2012-05-21 17:21:59 -04:00
|
|
|
creole_app do
|
|
|
|
creole 'Hello World', :layout => :layout2, :layout_engine => :erb
|
|
|
|
end
|
2011-04-15 05:51:35 -04:00
|
|
|
assert ok?
|
|
|
|
assert_body "ERB Layout!\n<p>Hello World</p>"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can be used in a nested fashion for partials and whatnot" do
|
|
|
|
mock_app do
|
|
|
|
template(:inner) { "hi" }
|
|
|
|
template(:outer) { "<outer><%= creole :inner %></outer>" }
|
2012-05-21 17:21:59 -04:00
|
|
|
get('/') { erb :outer }
|
2011-04-15 05:51:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
|
|
|
assert_like '<outer><p>hi</p></outer>', body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue LoadError
|
|
|
|
warn "#{$!.to_s}: skipping creole tests"
|
|
|
|
end
|