(self)
| 38 | |
| 39 | class TestBulk(TestCase): |
| 40 | def setUp(self): |
| 41 | self.t = Task() |
| 42 | |
| 43 | self.t.config("bulk", "3") |
| 44 | |
| 45 | self.t("add one") |
| 46 | self.t("add two") |
| 47 | self.t("add three") |
| 48 | |
| 49 | def test_bulk_confirmations_single_confirmation_off(self): |
| 50 | """not bulk delete 1 tasks with confirmation:0 deletes it""" |