haml--haml/test/test_helper.rb

92 lines
2.2 KiB
Ruby

require 'unindent'
require 'bundler/setup'
require 'minitest/autorun'
require 'action_pack'
require 'action_controller'
require 'action_view'
require 'rails'
require 'hamlit'
require 'hamlit/template'
require 'minitest/reporters'
Minitest::Reporters.use!
BASE_TEST_CLASS = if defined?(Minitest::Test)
Minitest::Test
else
MiniTest::Unit::TestCase
end
module Declarative
def test(name, &block)
define_method("test_ #{name}", &block)
end
end
module RenderAssertion
def assert_render(haml, html, options = {})
options = options.dup
options.delete(:compatible_only)
options.delete(:error_with)
options = { escape_html: true, ugly: true }.merge(options)
unless options.delete(:skip_unindent)
haml, html = haml.unindent, html.unindent
end
assert_equal html, render(haml, options)
end
def assert_inline(haml, html)
assert_equal html + "\n", render(haml + "\n")
end
def render(text, options = {}, &block)
scope = options.delete(:scope) || Object.new
locals = options.delete(:locals) || {}
eval Hamlit::HamlEngine.new(text, options).precompiled
end
end
class Haml::TestCase < BASE_TEST_CLASS
extend Declarative
def render(text, options = {}, base = nil, &block)
options = { escape_html: false }.merge(options) # incompatible default
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