mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a731125f12
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
22 lines
699 B
Ruby
22 lines
699 B
Ruby
require "abstract_unit"
|
|
require "active_support/deprecation"
|
|
|
|
class ProxyWrappersTest < ActiveSupport::TestCase
|
|
Waffles = false
|
|
NewWaffles = :hamburgers
|
|
|
|
def test_deprecated_object_proxy_doesnt_wrap_falsy_objects
|
|
proxy = ActiveSupport::Deprecation::DeprecatedObjectProxy.new(nil, "message")
|
|
assert !proxy
|
|
end
|
|
|
|
def test_deprecated_instance_variable_proxy_doesnt_wrap_falsy_objects
|
|
proxy = ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new(nil, :waffles)
|
|
assert !proxy
|
|
end
|
|
|
|
def test_deprecated_constant_proxy_doesnt_wrap_falsy_objects
|
|
proxy = ActiveSupport::Deprecation::DeprecatedConstantProxy.new(Waffles, NewWaffles)
|
|
assert !proxy
|
|
end
|
|
end
|