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>
80 lines
2 KiB
Ruby
80 lines
2 KiB
Ruby
require File.dirname(__FILE__) + '/helper'
|
|
|
|
begin
|
|
require 'markaby'
|
|
|
|
class MarkabyTest < Test::Unit::TestCase
|
|
def markaby_app(&block)
|
|
mock_app do
|
|
set :views, File.dirname(__FILE__) + '/views'
|
|
get '/', &block
|
|
end
|
|
get '/'
|
|
end
|
|
|
|
it 'renders inline markaby strings' do
|
|
markaby_app { markaby 'h1 "Hiya"' }
|
|
assert ok?
|
|
assert_equal "<h1>Hiya</h1>", body
|
|
end
|
|
|
|
it 'renders .markaby files in views path' do
|
|
markaby_app { markaby :hello }
|
|
assert ok?
|
|
assert_equal "<h1>Hello From Markaby</h1>", body
|
|
end
|
|
|
|
it "renders with inline layouts" do
|
|
mock_app do
|
|
layout { 'h1 { text "THIS. IS. "; yield }' }
|
|
get('/') { markaby 'em "SPARTA"' }
|
|
end
|
|
get '/'
|
|
assert ok?
|
|
assert_equal "<h1>THIS. IS. <em>SPARTA</em></h1>", body
|
|
end
|
|
|
|
it "renders with file layouts" do
|
|
markaby_app { markaby 'text "Hello World"', :layout => :layout2 }
|
|
assert ok?
|
|
assert_equal "<h1>Markaby Layout!</h1><p>Hello World</p>", body
|
|
end
|
|
|
|
it 'renders inline markaby blocks' do
|
|
markaby_app { markaby { h1 'Hiya' } }
|
|
assert ok?
|
|
assert_equal "<h1>Hiya</h1>", body
|
|
end
|
|
|
|
it 'renders inline markaby blocks with inline layouts' do
|
|
markaby_app do
|
|
settings.layout { 'h1 { text "THIS. IS. "; yield }' }
|
|
markaby { em 'SPARTA' }
|
|
end
|
|
assert ok?
|
|
assert_equal "<h1>THIS. IS. <em>SPARTA</em></h1>", body
|
|
end
|
|
|
|
it 'renders inline markaby blocks with file layouts' do
|
|
markaby_app { markaby(:layout => :layout2) { text "Hello World" } }
|
|
assert ok?
|
|
assert_equal "<h1>Markaby Layout!</h1><p>Hello World</p>", body
|
|
end
|
|
|
|
it "raises error if template not found" do
|
|
mock_app { get('/') { markaby :no_such_template } }
|
|
assert_raise(Errno::ENOENT) { get('/') }
|
|
end
|
|
|
|
it "allows passing locals" do
|
|
markaby_app do
|
|
markaby 'text value', :locals => { :value => 'foo' }
|
|
end
|
|
assert ok?
|
|
assert_equal 'foo', body
|
|
end
|
|
end
|
|
|
|
rescue LoadError
|
|
warn "#{$!.to_s}: skipping markaby tests"
|
|
end
|