Sha256: ba3e4b39c13e9911c32bd4b01a64ce2375b351bf7cefd9435e61070c9b40f210
Contents?: true
Size: 831 Bytes
Versions: 38
Compression:
Stored size: 831 Bytes
Contents
require "rubygems" require "minitest/autorun" require "json" require "haml" class HamlTest < MiniTest::Unit::TestCase contexts = JSON.parse(File.read(File.dirname(__FILE__) + "/tests.json")) contexts.each do |context| context[1].each do |name, test| define_method("test_spec: #{name} (#{context[0]})") do html = test["html"] haml = test["haml"] locals = Hash[(test["locals"] || {}).map {|x, y| [x.to_sym, y]}] options = Hash[(test["config"] || {}).map {|x, y| [x.to_sym, y]}] options[:format] = options[:format].to_sym if options.key?(:format) engine = Haml::Engine.new(haml, options) result = engine.render(Object.new, locals) assert_equal html, result.strip end end end end
Version data entries
38 entries across 38 versions & 7 rubygems