aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/module
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-06-08 22:19:15 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-06-08 22:19:15 +0000
commit29ce2eb9d1a8891259debe8b023b173ba33da426 (patch)
tree9d406e844dca60ce3cbbc585498f69bae9c420d1 /activesupport/test/core_ext/module
parentbfda4cdc5a0ac1b8e846f0838eca36075b3be987 (diff)
downloadrails-29ce2eb9d1a8891259debe8b023b173ba33da426.tar.gz
rails-29ce2eb9d1a8891259debe8b023b173ba33da426.tar.bz2
rails-29ce2eb9d1a8891259debe8b023b173ba33da426.zip
Clean up junk test. Closes #7973 [Rob Sanheim]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6976 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext/module')
-rw-r--r--activesupport/test/core_ext/module/attr_accessor_with_default.rb30
-rw-r--r--activesupport/test/core_ext/module/attr_accessor_with_default_test.rb2
2 files changed, 1 insertions, 31 deletions
diff --git a/activesupport/test/core_ext/module/attr_accessor_with_default.rb b/activesupport/test/core_ext/module/attr_accessor_with_default.rb
index 8ae52ad17a..e69de29bb2 100644
--- a/activesupport/test/core_ext/module/attr_accessor_with_default.rb
+++ b/activesupport/test/core_ext/module/attr_accessor_with_default.rb
@@ -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 \ No newline at end of file
diff --git a/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb b/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb
index 8ae52ad17a..71039c0ef9 100644
--- a/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb
+++ b/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb
@@ -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