diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-09-23 16:37:13 -0400 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-09-23 16:37:13 -0400 |
commit | ff102cd2b89daf9a0feea2e10503e780d2454e29 (patch) | |
tree | d6a93c66719814a4d498f4b17b395067eb050811 /tests | |
parent | 245dcb86e2632a315aafa2a936dbc66c3de56be9 (diff) | |
download | steuermann-ff102cd2b89daf9a0feea2e10503e780d2454e29.tar.gz |
checkpoint
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@429 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hosts.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/hosts.py b/tests/hosts.py index 5fbfa25..c1305a8 100644 --- a/tests/hosts.py +++ b/tests/hosts.py @@ -3,11 +3,19 @@ import steuermann.run as run r = run.runner(0,0) def test_1() : - print r.cfg.sections() + print "SECTIONS",r.cfg.sections() def test_2() : print r.get_host_info('rhe4-32') +def test_3() : + print r.get_host_info('leopard') + +print "XXXXXXXXXX" test_1() +print "XXXXXXXXXX" test_2() +print "XXXXXXXXXX" +test_3() +print "XXXXXXXXXX" |