/vendor/gems/facets-2.4.5/test/core/string/test_end_with.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 12 lines · 8 code · 4 blank · 0 comment · 0 complexity · 47c6f47d7bc5d92ebb118d3ecdb25555 MD5 · raw file
- require 'facets/string/end_with'
- require 'test/unit'
- class Test_String < Test::Unit::TestCase
- def test_end_with?
- s = "xxboo"
- assert( s.end_with?('boo') )
- end
- end