test/ft_11_ppd.rb in openwferu-0.9.3 vs test/ft_11_ppd.rb in openwferu-0.9.4

- old
+ new

@@ -6,11 +6,12 @@ # # Tue Jan 2 13:14:37 JST 2007 # require 'flowtestbase' -require 'openwfe/expressions/raw_prog' +#require 'openwfe/expressions/raw_prog' +require 'openwfe/def' include OpenWFE class FlowTest11 < FlowTestBase @@ -332,9 +333,33 @@ def test_ppd_8 #def xxxx_ppd_8 dotest( TestDefinition8, + "toto") + end + + + # + # Test 9 + # + + class TestDefinition9 < ProcessDefinition + def make + process_definition :name => "test8", :revision => "0" do + _toto + process_definition :name => "toto" do + _print "toto" + end + end + end + end + + def test_ppd_9 + #def xxxx_ppd_9 + + dotest( + TestDefinition9, "toto") end end