Sha256: abb47242487ec04eb51289336a8eb055496f935b78130521613914bcbe594724

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

require 'helper'

class Nanoc::Filters::MustacheTest < Nanoc::TestCase
  def test_filter
    if_have 'mustache' do
      # Create item
      item = Nanoc::Int::Item.new(
        'content',
        { title: 'Max Payne', protagonist: 'Max Payne' },
        '/games/max-payne',
      )

      # Create filter
      filter = ::Nanoc::Filters::Mustache.new(item: item)

      # Run filter
      result = filter.setup_and_run('The protagonist of {{title}} is {{protagonist}}.')
      assert_equal('The protagonist of Max Payne is Max Payne.', result)
    end
  end

  def test_filter_with_yield
    if_have 'mustache' do
      # Create item
      item = Nanoc::Int::Item.new(
        'content',
        { title: 'Max Payne', protagonist: 'Max Payne' },
        '/games/max-payne',
      )

      # Create filter
      filter = ::Nanoc::Filters::Mustache.new(
        content: 'No Payne No Gayne', item: item,
      )

      # Run filter
      result = filter.setup_and_run('Max says: {{yield}}.')
      assert_equal('Max says: No Payne No Gayne.', result)
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
nanoc-4.8.12 test/filters/test_mustache.rb
nanoc-4.8.11 test/filters/test_mustache.rb
nanoc-4.8.10 test/filters/test_mustache.rb
nanoc-4.8.9 test/filters/test_mustache.rb
nanoc-4.8.8 test/filters/test_mustache.rb
nanoc-4.8.7 test/filters/test_mustache.rb
nanoc-4.8.6 test/filters/test_mustache.rb
nanoc-4.8.5 test/filters/test_mustache.rb
nanoc-4.8.4 test/filters/test_mustache.rb
nanoc-4.8.3 test/filters/test_mustache.rb