aboutsummaryrefslogtreecommitdiff
path: root/tests/hosts.py
blob: 9039cd8e7d5995ba46b3f1d9be494757a5a82524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import steuermann.run as run

r = run.runner(0,0)

def test_1() :
    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")