From: Trans Date: 2005-11-15T02:32:16+09:00 Subject: Re: Putting unit test cases in the code - RDoc & UnitTest With Facets I use a remark: =begin test require 'text/unit' class ATest << Test::Unit::TestCase ... end =end when I want to run the test I remark the remarks: #=begin test ... #=end That works good for dev testing. Later when I want to run the enite testsuite I use a Reap task (see Rubyforge) that extracts and copies the remarked tests to the test directory. T.