# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/symbol/camelcase.rb # # Extracted Tue Jun 06 09:30:19 EDT 2006 # Unit Tools Reap Test Extractor # 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