Sha256: abfcb67ec3d71c6022b80e7b33c9cdab3079549480e3e070d4d88d76e2dca6f3

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

module PuppetTest::Support::Collection
    def run_collection_queries(form)
        {true => [%{title == "/tmp/testing"}, %{(title == "/tmp/testing")}, %{group == bin},
            %{title == "/tmp/testing" and group == bin}, %{title == bin or group == bin},
            %{title == "/tmp/testing" or title == bin}, %{title == "/tmp/testing"},
            %{(title == "/tmp/testing" or title == bin) and group == bin}],
        false => [%{title == bin}, %{title == bin or (title == bin and group == bin)},
            %{title != "/tmp/testing"}, %{title != "/tmp/testing" and group != bin}]
        }.each do |res, ary|
            ary.each do |str|
                if form == :virtual
                    code = "File <| #{str} |>"
                else
                    code = "File <<| #{str} |>>"
                end
                parser = mkparser
                query = nil

                assert_nothing_raised("Could not parse '#{str}'") do
                    query = parser.parse(code).classes[""].code[0].query
                end

                yield str, res, query
            end
        end
    end
end

# $Id: collection.rb 2742 2007-08-03 23:49:53Z luke $

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet-0.23.2 test/lib/puppettest/support/collection.rb