class Test::Unit::Attribute::StringifyKeyHash
公共类方法
stringify(object) 点击切换源代码
# File test-unit-3.6.7/lib/test/unit/attribute.rb, line 6 def stringify(object) object.to_s end
公共实例方法
[](key) 点击切换源代码
调用父类方法
# File test-unit-3.6.7/lib/test/unit/attribute.rb, line 15 def [](key) super(self.class.stringify(key)) end
[]=(key, value) 点击切换源代码
调用父类方法
# File test-unit-3.6.7/lib/test/unit/attribute.rb, line 19 def []=(key, value) super(self.class.stringify(key), value) end
key?(key) 点击切换源代码
调用父类方法
# File test-unit-3.6.7/lib/test/unit/attribute.rb, line 11 def key?(key) super(self.class.stringify(key)) end