diff options
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/test_test.rb | 67 |
1 files changed, 35 insertions, 32 deletions
diff --git a/activesupport/test/test_test.rb b/activesupport/test/test_test.rb index 944b98f529..5c8039ea1e 100644 --- a/activesupport/test/test_test.rb +++ b/activesupport/test/test_test.rb @@ -1,7 +1,6 @@ require File.dirname(__FILE__) + '/abstract_unit' class AssertDifferenceTest < Test::Unit::TestCase - def setup @object = Class.new do attr_accessor :num @@ -15,48 +14,52 @@ class AssertDifferenceTest < Test::Unit::TestCase end.new @object.num = 0 end - - def test_assert_no_difference - assert_no_difference '@object.num' do - # ... + + if lambda { }.respond_to?(:binding) + def test_assert_no_difference + assert_no_difference '@object.num' do + # ... + end end - end - def test_assert_difference - assert_difference '@object.num', +1 do - @object.increment + def test_assert_difference + assert_difference '@object.num', +1 do + @object.increment + end end - end - def test_assert_difference_with_implicit_difference - assert_difference '@object.num' do - @object.increment + def test_assert_difference_with_implicit_difference + assert_difference '@object.num' do + @object.increment + end end - end - def test_arbitrary_expression - assert_difference '@object.num + 1', +2 do - @object.increment - @object.increment + def test_arbitrary_expression + assert_difference '@object.num + 1', +2 do + @object.increment + @object.increment + end end - end - def test_negative_differences - assert_difference '@object.num', -1 do - @object.decrement + def test_negative_differences + assert_difference '@object.num', -1 do + @object.decrement + end end - end - def test_expression_is_evaluated_in_the_appropriate_scope - local_scope = 'foo' - silence_warnings do - assert_difference('local_scope; @object.num') { @object.increment } + def test_expression_is_evaluated_in_the_appropriate_scope + local_scope = 'foo' + silence_warnings do + assert_difference('local_scope; @object.num') { @object.increment } + end end - end - - def test_array_of_expressions - assert_difference [ '@object.num', '@object.num + 1' ], +1 do - @object.increment + + def test_array_of_expressions + assert_difference [ '@object.num', '@object.num + 1' ], +1 do + @object.increment + end end + else + def default_test; end end end |