John,
I have been trying to play with scheduled workflows in latest svn. It
appears that they start right away regardless.
I modified the FlowTest67 slightly to make sure:
class FlowTest67 < Test::Unit::TestCase
include FlowTestBase
#def teardown
#end
#def setup
#end
#
# TEST 0
class Test0 < ProcessDefinition
_print "hell0 #{Time.now}"
end
def test_0
#log_level_to_debug
t = Time.now
puts "launching in 5s: #{t} #{t+5}"
@engine.launch(Test0, :in => "5s")
assert_equal @tracer.to_s, ""
sleep 5
assert_equal @tracer.to_s, "hell0 #{t+5}"
end
end
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenWFEru dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/openwferu-dev?hl=en
-~----------~----~----~----~------~----~------~--~---