/vendor/gems/facets-2.4.5/test/core/string/test_shatter.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 14 lines · 10 code · 4 blank · 0 comment · 0 complexity · b627f080c8a3f0dde2334c433cd8168e MD5 · raw file
- require 'facets/string/shatter'
- require 'test/unit'
- class TC_String_Shatter < Test::Unit::TestCase
- def test_shatter
- s = "<p>This<b>is</b>a test.</p>"
- sh = s.shatter( /<.*?>/ )
- e = ["<p>", "This", "<b>", "is", "</b>", "a test.", "</p>"]
- assert_equal(e, sh)
- end
- end