# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/symbol/camelize.rb # # Extracted Fri Feb 16 02:00:36 EST 2007 # Project.rb Test Extraction # require 'facets/core/symbol/camelize.rb' require 'test/unit' class TCSymbol < Test::Unit::TestCase # camelize def test_camelize assert_equal( :ThisIsTest, :this_is_test.camelize ) end end