instiki/vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
Jacques Distler 6873fc8026 Upgrade to Rails 2.0.2
Upgraded to Rails 2.0.2, except that we maintain

   vendor/rails/actionpack/lib/action_controller/routing.rb

from Rail 1.2.6 (at least for now), so that Routes don't change. We still
get to enjoy Rails's many new features.

Also fixed a bug in Chunk-handling: disable WikiWord processing in tags (for real this time).
2007-12-21 01:48:59 -06:00

34 lines
806 B
Ruby

require File.dirname(__FILE__) + '/../../abstract_unit'
class ModuleAttributeAccessorTest < Test::Unit::TestCase
def setup
m = @module = Module.new do
mattr_accessor :foo
mattr_accessor :bar, :instance_writer => false
end
@class = Class.new
@class.instance_eval { include m }
@object = @class.new
end
def test_should_use_mattr_default
assert_nil @module.foo
assert_nil @object.foo
end
def test_should_set_mattr_value
@module.foo = :test
assert_equal :test, @object.foo
@object.foo = :test2
assert_equal :test2, @module.foo
end
def test_should_not_create_instance_writer
assert @module.respond_to?(:foo)
assert @module.respond_to?(:foo=)
assert @object.respond_to?(:bar)
assert !@object.respond_to?(:bar=)
end
end