File: sequential.rb

package info (click to toggle)
facter 4.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,276 kB
  • sloc: ruby: 64,130; sh: 48; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
test_name "--sequential argument does not generate any errors" do
  tag 'risk:high'

  agents.each do |agent|
    step "--sequential should generate no errors" do
      on(agent, facter("--sequential --debug"), :acceptable_exit_codes => 0) do |facter_output|
        assert_match(/Resolving facts sequentially/, facter_output.stderr, "Resolving facts sequentially")
      end
    end
  end
end