# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/nano/string/unix_crypt.rb # # Extracted Fri Oct 28 14:20:18 EDT 2005 # Unit Tools Reap Test Extractor # require 'nano/string/unix_crypt.rb' require 'test/unit' class TCString < Test::Unit::TestCase def test_unix_crypt assert_nothing_raised { "abc 123".unix_crypt } end def test_unix_crypt! assert_nothing_raised { "abc 123".unix_crypt! } end end