(self)
| 78 | self.assertNotIn("testblob", workspace.C.Workspace.current.blobs) |
| 79 | |
| 80 | def testRunPlan(self): |
| 81 | plan = core.Plan("test-plan") |
| 82 | plan.AddStep(core.ExecutionStep("test-step", self.net)) |
| 83 | self.assertEqual(workspace.RunPlan(plan.Proto().SerializeToString()), True) |
| 84 | self.assertEqual(workspace.HasBlob("testblob"), True) |
| 85 | |
| 86 | def testRunPlanInBackground(self): |
| 87 | plan = core.Plan("test-plan") |
nothing calls this directly
no test coverage detected