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

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

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 11 lines | 7 code | 4 blank | 0 comment | 0 complexity | 6a299add70fe5a70a276177cc78ca28e 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/methodize'
  2. require 'test/unit'
  3. class Test_Module_Methodize < Test::Unit::TestCase
  4. def test_methodize
  5. assert_equal( "test__unit__test_case", ::Test::Unit::TestCase.methodize )
  6. end
  7. end