test/ft_1b_unset.rb in ruote-0.9.18 vs test/ft_1b_unset.rb in ruote-0.9.19

- old
+ new

@@ -9,31 +9,31 @@ require 'flowtestbase' class FlowTest1b < Test::Unit::TestCase - include FlowTestBase + include FlowTestBase - #def setup - #end + #def setup + #end - #def teardown - #end + #def teardown + #end - def test_unset_6 - dotest(\ + def test_unset_6 + dotest(\ '''<process-definition name="unset_6" revision="0"> - <sequence> - <set variable="/x" value="y" /> - <print>set ${x}</print> - <sub0/> - <print>unset ${x}</print> - </sequence> - <process-definition name="sub0"> - <unset variable="/x" /> - </process-definition> + <sequence> + <set variable="/x" value="y" /> + <print>set ${x}</print> + <sub0/> + <print>unset ${x}</print> + </sequence> + <process-definition name="sub0"> + <unset variable="/x" /> + </process-definition> </process-definition>''', 'set y unset') - end + end end