| Home | Trees | Indices | Help |
|---|
|
|
1 """
2 Network Test Suite
3
4 Tests Netwoks defined in networks.py by visual inspection
5 """
6
7 try:
8 from datk.core.networks import *
9 from datk.core.tester import *
10 except ImportError:
11 raise ImportError(
12 """ Imports failed\n
13 To run tests, execute the following commands:
14 $ cd ../..
15 $ python -m datk.tests.networks_tests """)
16
17 try:
18 __IPYTHON__
19 ip = get_ipython()
20 ip.magic("%matplotlib inline")
21 except NameError:
22 pass
27
31
35
39
43
47
51
52 summarize()
53
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Sat Dec 19 01:14:00 2015 | http://epydoc.sourceforge.net |