haml--haml/test/test_helper.rb

87 lines
2.1 KiB
Ruby
Raw Normal View History

2015-10-24 11:44:18 +00:00
require 'unindent'
2015-10-13 11:45:07 +00:00
require 'bundler/setup'
require 'minitest/autorun'
require 'action_pack'
require 'action_controller'
require 'action_view'
require 'rails'
2015-10-24 07:48:26 +00:00
require 'hamlit'
require 'hamlit/template'
2015-10-11 03:13:03 +00:00
require 'minitest/reporters'
Minitest::Reporters.use!
2015-10-13 11:45:07 +00:00
BASE_TEST_CLASS = if defined?(Minitest::Test)
Minitest::Test
else
MiniTest::Unit::TestCase
end
module Declarative
def test(name, &block)
2015-10-24 12:43:34 +00:00
define_method("test_ #{name}", &block)
2015-10-24 11:44:18 +00:00
end
end
2015-10-24 12:43:34 +00:00
module RenderAssertion
2015-10-24 11:52:15 +00:00
def assert_render(haml, html, options = {})
2015-10-24 12:48:01 +00:00
options = options.dup
options.delete(:compatible_only)
options.delete(:error_with)
2015-10-24 11:52:15 +00:00
options = { escape_html: true, ugly: true}.merge(options)
2015-10-24 11:44:18 +00:00
haml, html = haml.unindent, html.unindent
2015-10-24 13:18:12 +00:00
assert_equal html, render(haml, options)
2015-10-13 11:45:07 +00:00
end
2015-10-24 12:43:34 +00: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
2015-10-13 11:45:07 +00:00
end
class Haml::TestCase < BASE_TEST_CLASS
extend Declarative
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