Sha256: bf92777a97a4437f6cb0361518169ed034631154974cfac6a209427b87ad0173
Contents?: true
Size: 1.48 KB
Versions: 8
Compression:
Stored size: 1.48 KB
Contents
# # 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( ''' <process-definition name="25_cancel" revision="0"> <sequence> <print>before</print> <cancel-process/> <print>after</print> </sequence> </process-definition> '''.strip, "before", 0.500) 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.500) 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
Version data entries
8 entries across 8 versions & 1 rubygems