mirror of
https://github.com/Shopify/liquid.git
synced 2025-11-22 00:02:48 -05:00
- Organized the files - Cleaned up some of the white spacing issues - A lot can still be done to make the tests more readable to the new developers
27 lines
582 B
Ruby
27 lines
582 B
Ruby
#!/usr/bin/env ruby
|
|
extras_path = File.join File.dirname(__FILE__), 'extra'
|
|
$LOAD_PATH.unshift(extras_path) unless $LOAD_PATH.include? extras_path
|
|
|
|
require 'test/unit'
|
|
require 'test/unit/assertions'
|
|
require 'caller'
|
|
require 'breakpoint'
|
|
require File.join File.dirname(__FILE__), '..', 'lib', 'liquid'
|
|
|
|
|
|
module Test
|
|
|
|
module Unit
|
|
|
|
module Assertions
|
|
include Liquid
|
|
|
|
def assert_template_result(expected, template, assigns={}, message=nil)
|
|
assert_equal expected, Template.parse(template).render(assigns)
|
|
end
|
|
end # Assertions
|
|
|
|
end # Unit
|
|
|
|
end # Test
|