Sha256: 7471a3085e219a3ebf742ef60c9b642ad52c0fa842a30b9c945870a27d684daf
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.350 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.350 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openwferu-0.9.17 | test/ft_70_lookupvar.rb |