Sha256: 209d5786da02d3a784fe8be9f48d5263b1587e79b6f42e65369526090a66349a
Contents?: true
Size: 638 Bytes
Versions: 1
Compression:
Stored size: 638 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/string/word_filter.rb # # Extracted Mon Jul 03 00:56:56 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/core/string/word_filter.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_word_filter s = "this is a test" n = s.word_filter{ |w| "#{w}1" } assert_equal( 'this1 is1 a1 test1', n ) end def test_word_filter! s = "this is a test" s.word_filter!{ |w| "#{w}1" } assert_equal( 'this1 is1 a1 test1', s ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.4.4 | test/lib/facets/core/string/test_word_filter.rb |