# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/symbol/camelcase.rb # # Extracted Tue Feb 06 17:03:51 EST 2007 # Project.rb Test Extraction # require 'facets/core/symbol/camelcase.rb' require 'test/unit' class TCSymbol < Test::Unit::TestCase def test_camelcase assert_equal( :thisIsTest, :this_is_test.camelcase ) end end