# # Testing OpenWFE # # John Mettraux at openwfe.org # # Mon Oct 9 22:19:44 JST 2006 # require 'openwfe/def' require 'flowtestbase' class FlowTest25 < Test::Unit::TestCase include FlowTestBase #def teardown #end #def setup #end # # TEST 0 def test_cancel_0 dotest( ''' before after '''.strip, "before", 0.700) end # # TEST 1 class TestDefinition1 < ProcessDefinition def make _process_definition :name => "25_cancel", :revision => "1" do _sequence do _print "before" _cancel_process _print "after" end end end end def test_cancel_1 dotest( TestDefinition1, "before", 0.900) end # # TEST 2 class TestDefinition2 < ProcessDefinition def make _process_definition :name => "25_cancel", :revision => "2" do _sequence do _print "before" _cancel_process :if => "false" _print "after" end end end end def test_cancel_2 dotest(TestDefinition2, "before\nafter") end end