Clean up junk test. Closes #7973 [Rob Sanheim]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6976 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-06-08 22:19:15 +00:00
parent bfda4cdc5a
commit 29ce2eb9d1
2 changed files with 1 additions and 31 deletions

View File

@ -1,30 +0,0 @@
require File.dirname(__FILE__) + '/../../abstract_unit'
class AttrWithDefaultTest < Test::Unit::TestCase
def setup
@target = Class.new do
def helper
'helper'
end
end
@instance = @target.new
end
def test_default_arg
@target.attr_accessor_with_default :foo, :bar
assert_equal(:bar, @instance.foo)
@instance.foo = nil
assert_nil(@instance.foo)
end
def test_default_proc
@target.attr_accessor_with_default(:foo) {helper.upcase}
assert_equal('HELPER', @instance.foo)
@instance.foo = nil
assert_nil(@instance.foo)
end
def test_invalid_args
assert_raise(RuntimeError) {@target.attr_accessor_with_default :foo}
end
end

View File

@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../../abstract_unit'
class AttrWithDefaultTest < Test::Unit::TestCase
class AttrAccessorWithDefaultTest < Test::Unit::TestCase
def setup
@target = Class.new do
def helper