Sha256: 29a4bec6ef3a353fb7f89f215edba80236c29a60215625a504df67051733f1a1

Contents?: true

Size: 1.41 KB

Versions: 10

Compression:

Stored size: 1.41 KB

Contents

require 'test_helper'

class AssignTest < Minitest::Test
  include Liquid

  def test_assign_with_hyphen_in_variable_name
    template_source = <<-END_TEMPLATE
    {% assign this-thing = 'Print this-thing' %}
    {{ this-thing }}
    END_TEMPLATE
    template = Template.parse(template_source)
    rendered = template.render!
    assert_equal "Print this-thing", rendered.strip
  end

  def test_assigned_variable
    assert_template_result('.foo.',
                           '{% assign foo = values %}.{{ foo[0] }}.',
                           'values' => %w{foo bar baz})

    assert_template_result('.bar.',
                           '{% assign foo = values %}.{{ foo[1] }}.',
                           'values' => %w{foo bar baz})
  end

  def test_assign_with_filter
    assert_template_result('.bar.',
                           '{% assign foo = values | split: "," %}.{{ foo[1] }}.',
                           'values' => "foo,bar,baz")
  end

  def test_assign_syntax_error
    assert_match_syntax_error(/assign/,
                       '{% assign foo not values %}.',
                       'values' => "foo,bar,baz")
  end

  def test_assign_uses_error_mode
    with_error_mode(:strict) do
      assert_raises(SyntaxError) do
        Template.parse("{% assign foo = ('X' | downcase) %}")
      end
    end
    with_error_mode(:lax) do
      assert Template.parse("{% assign foo = ('X' | downcase) %}")
    end
  end
end # AssignTest

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
locomotivecms-liquid-4.0.0 test/integration/assign_test.rb
liquid-3.0.6 test/integration/assign_test.rb
liquid-3.0.5 test/integration/assign_test.rb
liquid-3.0.4 test/integration/assign_test.rb
liquid-3.0.3 test/integration/assign_test.rb
liquid-3.0.2 test/integration/assign_test.rb
locomotivecms-liquid-4.0.0.alpha2 test/integration/assign_test.rb
locomotivecms-liquid-4.0.0.alpha1 test/integration/assign_test.rb
locomotivecms-liquid-4.0.0.alpha test/integration/assign_test.rb
liquid-3.0.1 test/integration/assign_test.rb