source: trunk/integration/test_aaa_aardvark.py

Last change on this file was 1cfe843d, checked in by Alexandre Detiste <alexandre.detiste@…>, at 2024-02-22T23:40:25Z

more python2 removal

  • Property mode set to 100644
File size: 584 bytes
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
9def test_create_flogger(flog_gatherer):
10    print("Created flog_gatherer")
11
12
13def test_create_introducer(introducer):
14    print("Created introducer")
15
16
17def test_create_storage(storage_nodes):
18    print("Created {} storage nodes".format(len(storage_nodes)))
Note: See TracBrowser for help on using the repository browser.