Sha256: 1cf509974d4c2897930dce21d8603b10a6d2753fcc8b2487198ed46f15c934ce

Contents?: true

Size: 812 Bytes

Versions: 48

Compression:

Stored size: 812 Bytes

Contents

# frozen_string_literal: true

require "abstract_unit"

module ApiWithHelper
  def my_helper
    "helper"
  end
end

class WithHelpersController < ActionController::API
  include ActionController::Helpers
  helper ApiWithHelper

  def with_helpers
    render plain: self.class.helpers.my_helper
  end
end

class SubclassWithHelpersController < WithHelpersController
  def with_helpers
    render plain: self.class.helpers.my_helper
  end
end

class WithHelpersTest < ActionController::TestCase
  tests WithHelpersController

  def test_with_helpers
    get :with_helpers

    assert_equal "helper", response.body
  end
end

class SubclassWithHelpersTest < ActionController::TestCase
  tests WithHelpersController

  def test_with_helpers
    get :with_helpers

    assert_equal "helper", response.body
  end
end

Version data entries

48 entries across 48 versions & 2 rubygems

Version Path
jets-1.9.7 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.6 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.5 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.4 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.3 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.2 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.1 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.9.0 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.14 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.13 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.12 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.11 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.10 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.9 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.8 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.7 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.6 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.5 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.4 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb
jets-1.8.3 vendor/rails/actionpack/test/controller/api/with_helpers_test.rb