Sha256: 5829f3e633e4943fe4e333f5b1c8b270ccce3f27631225b4c44b174956693a09

Contents?: true

Size: 309 Bytes

Versions: 16

Compression:

Stored size: 309 Bytes

Contents

require 'facets/string/mscan'
require 'test/unit'

class TC_String_MScan < Test::Unit::TestCase

  def test_mscan
    r = 'abc,def,gh'.mscan(/[,]/)
    assert( r.all?{ |md| MatchData === md } )
    assert_equal( 2, r.to_a.length )
    assert_equal( ',', r[0][0] )
    assert_equal( ',', r[1][0] )
  end

end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
facets-2.8.4 test/core/string/test_mscan.rb
facets-2.8.3 test/core/string/test_mscan.rb
facets-2.8.2 test/core/string/test_mscan.rb
facets-2.8.1 test/core/string/test_mscan.rb
facets-2.8.0 test/core/string/test_mscan.rb
facets-2.7.0 test/core/string/test_mscan.rb
facets-2.6.0 test/core/string/test_mscan.rb
facets-2.4.0 test/string/test_mscan.rb
facets-2.4.1 test/string/test_mscan.rb
facets-2.4.3 test/core/string/test_mscan.rb
facets-2.4.4 test/core/string/test_mscan.rb
facets-2.4.2 test/core/string/test_mscan.rb
facets-2.4.5 test/core/string/test_mscan.rb
facets-2.5.0 test/core/string/test_mscan.rb
facets-2.5.1 test/core/string/test_mscan.rb
facets-2.5.2 test/core/string/test_mscan.rb