aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/deprecated_erb_variable_test.rb
blob: b07c590164a0b9ef6d50e2d08180567d62fb4298 (plain) (blame)
1
2
3
4
5
6
7
8
9
require 'abstract_unit'

class DeprecatedErbVariableTest < ActionView::TestCase
  def test_setting_erb_variable_warns
    assert_deprecated 'erb_variable' do
      ActionView::Base.erb_variable = '_erbout'
    end
  end
end