(g)
| 117 | |
| 118 | |
| 119 | def test_save(g): |
| 120 | fname = "test_save_g.pickle" |
| 121 | g.save(fname) |
| 122 | with open(fname, 'rb') as f: |
| 123 | gp = pickle.load(f) |
| 124 | os.remove(fname) |
| 125 | assert_callcommitgraphs_equal(g, gp) |
nothing calls this directly
no test coverage detected