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

/vendor/gems/facets-2.4.5/test/core/module/test_pathize.rb

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 15 lines | 7 code | 5 blank | 3 comment | 0 complexity | 35a5d97399029e3574c0f3e012e2ecf5 MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  1. require 'facets/module/pathize'
  2. require 'test/unit'
  3. class TestClassPathize < Test::Unit::TestCase
  4. def test_pathize
  5. assert_equal( Test::Unit::TestCase.pathize, 'test/unit/test_case' )
  6. end
  7. #def test_methodize
  8. # assert_equal( Test::Unit::TestCase.methodize, 'test__unit__test_case' )
  9. #end
  10. end