projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
4293: Node Manager shuts down nodes that fail to boot.
[arvados.git]
/
sdk
/
cli
/
test
/
test_arv-ws.rb
1
require 'minitest/autorun'
2
3
class TestArvWs < Minitest::Test
4
def setup
5
end
6
7
def test_arv_ws_get_help
8
out, err = capture_subprocess_io do
9
system ('arv-ws -h')
10
end
11
assert_equal '', err
12
end
13
14
def test_arv_ws_such_option
15
out, err = capture_subprocess_io do
16
system ('arv-ws --junk')
17
end
18
refute_equal '', err
19
end
20
21
end