(self)
| 83 | |
| 84 | class TestBashCompletionBase(TestCase): |
| 85 | def setUp(self): |
| 86 | self.t = Task() |
| 87 | |
| 88 | # Used also in tasksh script |
| 89 | self.t.config("alias.samplealias", "long") |
| 90 | self.t.config("abbreviation.minimum", "5") |
| 91 | |
| 92 | self.t.tasksh_script = os.path.join(self.t.datadir, "task.sh") |
| 93 | |
| 94 | with open(self.t.tasksh_script, "w") as tasksh: |
| 95 | tasksh.write(prepare_tasksh(self.t)) |
| 96 | |
| 97 | |
| 98 | class TestBashCompletion(TestBashCompletionBase): |
nothing calls this directly
no test coverage detected