# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/symbol/upcase.rb # # Extracted Thu May 04 17:46:31 EDT 2006 # Unit Tools Reap Test Extractor # 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