PageRenderTime 155ms CodeModel.GetById 19ms RepoModel.GetById 7ms app.codeStats 0ms

/vendor/gems/facets-2.4.5/test/core/string/test_op_sub.rb

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 12 lines | 8 code | 4 blank | 0 comment | 0 complexity | d79d266192659ea8f1b374921b0d52b9 MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  1. require 'facets/string/op_sub'
  2. require 'test/unit'
  3. class Test_String < Test::Unit::TestCase
  4. def test_op_sub
  5. s = "xxbooxxfoo"
  6. assert_equal( "boofoo", s - "xx" )
  7. end
  8. end