Method: HRecord.test
- Defined in:
- lib/hdatastructures/hrecord.rb
.test ⇒ Object
65 66 67 68 69 70 71 |
# File 'lib/hdatastructures/hrecord.rb', line 65 def self.test() rec = HRecord.new("a") rec.setValue("0", "index-0") rec.set("index-1", "1") rec.show() puts rec == rec end |