mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Add max/min filters
This commit is contained in:
@@ -498,6 +498,28 @@ class StandardFiltersTest < Minitest::Test
|
||||
assert_template_result "5", "{{ price | floor }}", 'price' => NumberLikeThing.new(5.4)
|
||||
end
|
||||
|
||||
def test_max
|
||||
assert_template_result "4", "{{ 5 | max:4 }}"
|
||||
assert_template_result "5", "{{ 5 | max:5 }}"
|
||||
assert_template_result "5", "{{ 5 | max:6 }}"
|
||||
|
||||
assert_template_result "4.5", "{{ 4.5 | max:5 }}"
|
||||
assert_template_result "5", "{{ width | max:5 }}", 'width' => NumberLikeThing.new(6)
|
||||
assert_template_result "4", "{{ width | max:5 }}", 'width' => NumberLikeThing.new(4)
|
||||
assert_template_result "4", "{{ 5 | max: width }}", 'width' => NumberLikeThing.new(4)
|
||||
end
|
||||
|
||||
def test_min
|
||||
assert_template_result "5", "{{ 5 | min:4 }}"
|
||||
assert_template_result "5", "{{ 5 | min:5 }}"
|
||||
assert_template_result "6", "{{ 5 | min:6 }}"
|
||||
|
||||
assert_template_result "5", "{{ 4.5 | min:5 }}"
|
||||
assert_template_result "6", "{{ width | min:5 }}", 'width' => NumberLikeThing.new(6)
|
||||
assert_template_result "5", "{{ width | min:5 }}", 'width' => NumberLikeThing.new(4)
|
||||
assert_template_result "6", "{{ 5 | min: width }}", 'width' => NumberLikeThing.new(6)
|
||||
end
|
||||
|
||||
def test_append
|
||||
assigns = { 'a' => 'bc', 'b' => 'd' }
|
||||
assert_template_result('bcd', "{{ a | append: 'd'}}", assigns)
|
||||
|
||||
Reference in New Issue
Block a user