(az)
| 130 | |
| 131 | |
| 132 | def test_save(az): |
| 133 | az.analyze(from_beginning=True, into_branches=True) |
| 134 | filename = "test_save_g.pickle" |
| 135 | az.save(filename) |
| 136 | with open(filename, 'rb') as f: |
| 137 | az1 = pickle.load(f) |
| 138 | os.remove(filename) |
| 139 | assert_analyzer_equal(az, az1) |
nothing calls this directly
no test coverage detected