aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/adv_attr_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/adv_attr_test.rb')
-rw-r--r--actionpack/test/adv_attr_test.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/actionpack/test/adv_attr_test.rb b/actionpack/test/adv_attr_test.rb
deleted file mode 100644
index fdda4ad92d..0000000000
--- a/actionpack/test/adv_attr_test.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require File.dirname(__FILE__) + '/abstract_unit'
-require 'action_mailer/adv_attr_accessor'
-
-class AdvAttrTest < Test::Unit::TestCase
- class Person
- include ActionMailer::AdvAttrAccessor
- adv_attr_accessor :name
- end
-
- def test_adv_attr
- bob = Person.new
- assert_nil bob.name
- bob.name 'Bob'
- assert_equal 'Bob', bob.name
-
- assert_raise(ArgumentError) {bob.name 'x', 'y'}
- end
-
-
-end \ No newline at end of file