Sha256: 348a91bc405342e33a7fc97535b6942f6ce90df66357c274e13f8ad2b5810e0d

Contents?: true

Size: 768 Bytes

Versions: 4

Compression:

Stored size: 768 Bytes

Contents

# frozen_string_literal: true
require 'test_helper'

class PartialTest < ActionDispatch::IntegrationTest
  setup do
    Author.create! name: 'aamine'
    nari = Author.create! name: 'nari'
    nari.books.create! title: 'the gc book'
  end

  test 'decorating implicit @object' do
    visit '/authors'
    assert page.has_content? 'the gc book'
    assert page.has_content? 'the gc book'.reverse
  end

  test 'decorating implicit @collection' do
    visit '/authors?partial=collection'
    assert page.has_content? 'the gc book'
    assert page.has_content? 'the gc book'.reverse
  end

  test 'decorating objects in @locals' do
    visit '/authors?partial=locals'
    assert page.has_content? 'the gc book'
    assert page.has_content? 'the gc book'.upcase
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
lulalala_presenter-0.1.0 test/features/partial_test.rb
active_decorator-1.0.0 test/features/partial_test.rb
active_decorator-0.9.0 test/features/partial_test.rb
active_decorator-0.8.0 test/features/partial_test.rb