Sha256: 2a0d2fbf29e764e0328784435cb68d9765836213f8f55dfeb9eceeab88ab5a09
Contents?: true
Size: 921 Bytes
Versions: 1
Compression:
Stored size: 921 Bytes
Contents
# # Testing OpenWFE # # John Mettraux at openwfe.org # # Thu Sep 13 17:46:20 JST 2007 # require 'openwfe/def' require 'flowtestbase' class FlowTest70 < Test::Unit::TestCase include FlowTestBase #def teardown #end #def setup #end # # TEST 0 class Test0 < ProcessDefinition sequence do set :v => "//topvar", :val => "top" set :v => "localvar", :val => "local" toto end end def test_0 #log_level_to_debug @engine.register_participant "toto", NullParticipant fei = @engine.launch(Test0) sleep 0.200 assert_equal @engine.lookup_variable("topvar"), "top" assert_equal @engine.lookup_variable("topvar", fei.wfid), "top" assert_equal @engine.lookup_variable("localvar", fei.wfid), "local" @engine.cancel_process(fei.wfid) sleep 0.200 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openwferu-0.9.16 | test/ft_70_lookupvar.rb |