module ActionView::TestCase::SharedTests

Public Class Methods

included(test_case) click to toggle source
# File actionview/test/template/test_case_test.rb, line 27
def self.included(test_case)
  test_case.class_eval do
    test "helpers defined on ActionView::TestCase are available" do
      assert_includes test_case.ancestors, ASharedTestHelper
      assert_equal "Holla!", from_shared_helper
    end
  end
end