Module: Test::Unit::Attribute
- Included in:
- TestCase
- Defined in:
- lib/test/unit/attribute.rb
Defined Under Namespace
Modules: BaseClassMethods, ClassMethods
Classes: StringifyKeyHash
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.included(base) ⇒ Object
25
26
27
28
|
# File 'lib/test/unit/attribute.rb', line 25
def included(base)
base.extend(BaseClassMethods)
base.extend(ClassMethods)
end
|
Instance Method Details
#[](name) ⇒ Object
223
224
225
|
# File 'lib/test/unit/attribute.rb', line 223
def [](name)
self.class.find_attribute(@method_name, name)
end
|
#attributes ⇒ Object
219
220
221
|
# File 'lib/test/unit/attribute.rb', line 219
def attributes
self.class.attributes(@method_name) || StringifyKeyHash.new
end
|