# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/symbol/upcase.rb # # Extracted Tue Feb 06 17:03:51 EST 2007 # Project.rb Test Extraction # require 'facets/core/symbol/upcase.rb' require 'test/unit' class TCSymbol < Test::Unit::TestCase def test_upcase? assert( :TIS.upcase? ) assert( ! :Tis.upcase? ) end end