mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
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:
parent
bfda4cdc5a
commit
29ce2eb9d1
2 changed files with 1 additions and 31 deletions
|
@ -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
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue