Sha256: 469fdbbec801cee9574bb29d4e4e166b5e74ac83a8a4e1de24ee78c4784822a1

Contents?: true

Size: 883 Bytes

Versions: 11

Compression:

Stored size: 883 Bytes

Contents

# encoding: utf-8
require File.join(File.dirname(__FILE__), 'test_helper')

class ACell < ::Cell::Base
  def existing_view
    @a = 'a'
    render
  end
end

class ActionControllerRenderTest < ActionController::TestCase
  include Cells::Rails::ActionController

  def test_render_cell
    assert_equal 'A/existing_view/a', render_cell(:a, :existing_view)
  end

  # Backward-compability.
  def test_render_cell_to_string
    assert_equal render_cell_to_string(:a, :existing_view), render_cell(:a, :existing_view)
  end
end

class ActionControllerRenderTest < ActionController::TestCase
  include Cells::Rails::ActionView

  def test_render_cell
    assert_equal 'A/existing_view/a', render_cell(:a, :existing_view)
  end

  # Backward-compability.
  def test_render_cell_to_string
    assert_equal render_cell_to_string(:a, :existing_view), render_cell(:a, :existing_view)
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cells-3.3.10 test/rails_test.rb
cells-3.3.9 test/rails_test.rb
cells-3.3.8 test/rails_test.rb
cells-3.3.7 test/rails_test.rb
cells-3.3.6 test/rails_test.rb
cells-3.3.5 test/rails_test.rb
cells-3.3.4 test/rails_test.rb
cells-3.3.3 test/rails_test.rb
cells-3.3.2 test/rails_test.rb
cells-3.3.1 test/rails_test.rb
cells-3.3.0 test/rails_test.rb