Line | |
---|
1 | # So these dummy tests run first and instantiate the pre-requisites |
---|
2 | # first (e.g. introducer) and therefore print "something" on the |
---|
3 | # console as we go (a . or the test-name in "-v"/verbose mode) |
---|
4 | |
---|
5 | # You can safely skip any of these tests, it'll just appear to "take |
---|
6 | # longer" to start the first test as the fixtures get built |
---|
7 | |
---|
8 | |
---|
9 | def test_create_flogger(flog_gatherer): |
---|
10 | print("Created flog_gatherer") |
---|
11 | |
---|
12 | |
---|
13 | def test_create_introducer(introducer): |
---|
14 | print("Created introducer") |
---|
15 | |
---|
16 | |
---|
17 | def test_create_storage(storage_nodes): |
---|
18 | print("Created {} storage nodes".format(len(storage_nodes))) |
---|
Note: See
TracBrowser
for help on using the repository browser.