PageRenderTime 27ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 13 lines | 9 code | 4 blank | 0 comment | 0 complexity | a62701e610eb4474856387151ab9214a 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/titlecase.rb'
  2. require 'test/unit'
  3. class StringTitleCaseTest < Test::Unit::TestCase
  4. def test_titlecase
  5. r = "try this out".titlecase
  6. x = "Try This Out"
  7. assert_equal(x,r)
  8. end
  9. end