2015-10-24 07:44:18 -04:00
|
|
|
require 'unindent'
|
2015-10-13 07:45:07 -04:00
|
|
|
require 'bundler/setup'
|
|
|
|
require 'minitest/autorun'
|
|
|
|
require 'action_pack'
|
|
|
|
require 'action_controller'
|
|
|
|
require 'action_view'
|
|
|
|
require 'rails'
|
|
|
|
|
2015-10-24 03:48:26 -04:00
|
|
|
require 'hamlit'
|
|
|
|
require 'hamlit/template'
|
|
|
|
|
2015-10-10 23:13:03 -04:00
|
|
|
require 'minitest/reporters'
|
|
|
|
Minitest::Reporters.use!
|
2015-10-13 07:45:07 -04:00
|
|
|
|
|
|
|
BASE_TEST_CLASS = if defined?(Minitest::Test)
|
|
|
|
Minitest::Test
|
|
|
|
else
|
|
|
|
MiniTest::Unit::TestCase
|
|
|
|
end
|
|
|
|
|
|
|
|
module Declarative
|
|
|
|
def test(name, &block)
|
2015-10-24 07:44:18 -04:00
|
|
|
define_method("test_hamlit #{name}", &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module HamlitTest
|
|
|
|
def assert_render(haml, html)
|
|
|
|
haml, html = haml.unindent, html.unindent
|
2015-10-24 07:47:06 -04:00
|
|
|
options = { escape_html: true, ugly: true }
|
|
|
|
assert_equal render(haml, options), html
|
2015-10-13 07:45:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Haml::TestCase < BASE_TEST_CLASS
|
|
|
|
extend Declarative
|
2015-10-24 07:44:18 -04:00
|
|
|
include HamlitTest
|
2015-10-13 07:45:07 -04:00
|
|
|
|
|
|
|
def render(text, options = {}, base = nil, &block)
|
|
|
|
scope = options.delete(:scope) || Object.new
|
|
|
|
locals = options.delete(:locals) || {}
|
|
|
|
engine = Hamlit::HamlEngine.new(text, options)
|
|
|
|
return engine.to_html(base) if base
|
|
|
|
engine.to_html(scope, locals, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_warning(message)
|
|
|
|
the_real_stderr, $stderr = $stderr, StringIO.new
|
|
|
|
yield
|
|
|
|
|
|
|
|
if message.is_a?(Regexp)
|
|
|
|
assert_match message, $stderr.string.strip
|
|
|
|
else
|
|
|
|
assert_equal message.strip, $stderr.string.strip
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
$stderr = the_real_stderr
|
|
|
|
end
|
|
|
|
|
|
|
|
def silence_warnings(&block)
|
|
|
|
Haml::Util.silence_warnings(&block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_raises_message(klass, message)
|
|
|
|
yield
|
|
|
|
rescue Exception => e
|
|
|
|
assert_instance_of(klass, e)
|
|
|
|
assert_equal(message, e.message)
|
|
|
|
else
|
|
|
|
flunk "Expected exception #{klass}, none raised"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.error(*args)
|
|
|
|
Haml::Error.message(*args)
|
|
|
|
end
|
|
|
|
end
|