mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
380 B
Ruby
18 lines
380 B
Ruby
require '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
|