mirror of
https://github.com/github/rails.git
synced 2026-01-30 00:38:00 -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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user