Sha256: 00dfe1ef4a770b9cfb2c6b08eb2af5dc14bdb66de36547956918793124477d35

Contents?: true

Size: 611 Bytes

Versions: 5

Compression:

Stored size: 611 Bytes

Contents

require_relative './test_xml_generator'

class TestXmlFlow < Test::Unit::TestCase
  def test_flow
    groovy_code = <<EOS
build("ops-" + params["GERRIT_BRANCH"], GERRIT_REFSPEC: "refs/heads/${params["GERRIT_BRANCH"]}",
  GERRIT_BRANCH: params["GERRIT_BRANCH"])
EOS
    builder = JenkinsJob::Builder.new
    builder.flow 'foo' do
      dsl groovy_code
    end

    actual = builder.config_as_xml_node('foo')
    { 'buildNeedsWorkspace' => 'true', 'dsl' => groovy_code }.each do |k, v|
      assert_equal v, actual.xpath("./com.cloudbees.plugins.flow.BuildFlow/#{k}").text, k
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubyjobbuilderdsl-0.0.5 test/test_flow.rb
rubyjobbuilderdsl-0.0.3 test/test_flow.rb
rubyjobbuilderdsl-0.0.2 test/test_flow.rb
rubyjobbuilderdsl-0.0.1 test/test_flow.rb
rubyjobbuilderdsl-0.0.0 test/test_flow.rb