Sha256: 218cb3c046f68bef50a07a46e845fc1246a1067eb134b257ab0e9cbbe5100cfa

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

#
# Testing OpenWFE
#
# John Mettraux at openwfe.org
#
# Mon Oct  9 22:19:44 JST 2006
#

require 'openwfe/def'
require 'flowtestbase'


class FlowTest25 < Test::Unit::TestCase
    include FlowTestBase

    #def teardown
    #end

    #def setup
    #end

    #
    # TEST 0

    def test_cancel_0

        dotest(
            '''
<process-definition name="25_cancel" revision="0">
    <sequence>
        <print>before</print>
        <cancel-process/>
        <print>after</print>
    </sequence>
</process-definition>
            '''.strip, 
            "before",
            0.700)
    end


    #
    # TEST 1

    class TestDefinition1 < ProcessDefinition
        def make
            _process_definition :name => "25_cancel", :revision => "1" do
                _sequence do
                    _print "before"
                    _cancel_process
                    _print "after"
                end
            end
        end
    end

    def test_cancel_1

        dotest(
            TestDefinition1, 
            "before",
            0.900)
    end


    #
    # TEST 2

    class TestDefinition2 < ProcessDefinition
        def make
            _process_definition :name => "25_cancel", :revision => "2" do
                _sequence do
                    _print "before"
                    _cancel_process :if => "false"
                    _print "after"
                end
            end
        end
    end

    def test_cancel_2
        dotest(TestDefinition2, "before\nafter")
    end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openwferu-0.9.16 test/ft_25_cancel.rb