示例#1
0
    def test_delete_plan(self):
        plan = Plan(self.TEST_PLAN)
        res1 = plan.create()
        self.assertEqual(res1.json()["success"], True)

        # Delete the plan
        res2 = plan.delete(self.TEST_PLAN["name"])
        self.assertEqual(res2.json()["success"], True)

        # Make sure the plan is gone
        res3 = plan.get(self.TEST_PLAN["name"])
        self.assertEqual(res3.json()["success"], False)
        self.assertEqual(res3.json()["reason"], "Plan does not exist")
示例#2
0
    def test_delete_plan(self):
        plan = Plan(self.TEST_PLAN)
        res1 = plan.create()
        self.assertEqual(res1.json()["success"], True)

        # Delete the plan
        res2 = plan.delete(self.TEST_PLAN["name"])
        self.assertEqual(res2.json()["success"], True)

        # Make sure the plan is gone
        res3 = plan.get(self.TEST_PLAN["name"])
        self.assertEqual(res3.json()["success"], False)
        self.assertEqual(res3.json()["reason"], "Plan does not exist")
示例#3
0
 def test_delete_nonexistent_plan(self):
     plan = Plan(None)
     resp = plan.delete("nonexistentplan")
     self.assertEqual(resp.json()["success"], False)
     self.assertEqual(resp.json()["reason"], "Plan does not exist.")
示例#4
0
 def test_delete_nonexistent_plan(self):
     plan = Plan(None)
     resp = plan.delete("nonexistentplan")
     self.assertEqual(resp.json()["success"], False)
     self.assertEqual(resp.json()["reason"], "Plan does not exist.")