diff options
author | elijah <elijah@riseup.net> | 2014-11-30 22:19:20 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-11-30 22:19:20 -0800 |
commit | 69067b64942fad72bd0ec9eeab7f161ef4a16ee3 (patch) | |
tree | 71b73fdc6d48ea887b89307aa1cd0953aaebac3f /tests/helpers/os_helper.rb | |
parent | fb02557925a464488c2996df3625c051c172f8ad (diff) |
minor: ensure there is only one tapicero process
Diffstat (limited to 'tests/helpers/os_helper.rb')
-rw-r--r-- | tests/helpers/os_helper.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/helpers/os_helper.rb b/tests/helpers/os_helper.rb index 529e899f..aad67dda 100644 --- a/tests/helpers/os_helper.rb +++ b/tests/helpers/os_helper.rb @@ -17,8 +17,12 @@ class LeapTest }.compact end - def assert_running(process) - assert pgrep(process).any?, "No running process for #{process}" + def assert_running(process, options={}) + processes = pgrep(process) + assert processes.any?, "No running process for #{process}" + if options[:single] + assert processes.length == 1, "More than one process for #{process}" + end end # |