Sha256: 21c836efa09b48883352edfd9c1c34135c3881444247e067c5cdecab8c894a3d
Contents?: true
Size: 493 Bytes
Versions: 1
Compression:
Stored size: 493 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/more/statichash.rb # # Extracted Wed Aug 23 18:22:52 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/more/statichash.rb' require 'test/unit' class TC_StaticHash < Test::Unit::TestCase def setup @sh1 = StaticHash.new end def test_assign @sh1["x"] = 1 assert_raises( ArgumentError ){ @sh1["x"] = 2 } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.7.30 | test/lib/facets/more/test_statichash.rb |