mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-25 21:27:19 +02:00
Unit Tests
- Removed whitespace for readability.
This commit is contained in:
parent
c2bf56af71
commit
c818a2fa3a
1 changed files with 0 additions and 10 deletions
|
@ -19,34 +19,24 @@ class TestBug1414(TestCase):
|
||||||
|
|
||||||
def test_execute(self):
|
def test_execute(self):
|
||||||
"""use execute"""
|
"""use execute"""
|
||||||
|
|
||||||
code, out, err = self.t(("exec", "echo hello"))
|
code, out, err = self.t(("exec", "echo hello"))
|
||||||
|
|
||||||
self.assertIn("hello", out)
|
self.assertIn("hello", out)
|
||||||
|
|
||||||
def test_exec_alias(self):
|
def test_exec_alias(self):
|
||||||
"""use exec in alias"""
|
"""use exec in alias"""
|
||||||
|
|
||||||
self.t.config("alias.asdf", "exec echo hello")
|
self.t.config("alias.asdf", "exec echo hello")
|
||||||
|
|
||||||
code, out, err = self.t(("asdf", ""))
|
code, out, err = self.t(("asdf", ""))
|
||||||
|
|
||||||
self.assertIn("hello", out)
|
self.assertIn("hello", out)
|
||||||
|
|
||||||
def test_execute_alias(self):
|
def test_execute_alias(self):
|
||||||
"""use execute in alias"""
|
"""use execute in alias"""
|
||||||
|
|
||||||
self.t.config("alias.asdf", "execute echo hello")
|
self.t.config("alias.asdf", "execute echo hello")
|
||||||
|
|
||||||
code, out, err = self.t(("asdf", ""))
|
code, out, err = self.t(("asdf", ""))
|
||||||
|
|
||||||
self.assertIn("hello", out)
|
self.assertIn("hello", out)
|
||||||
|
|
||||||
def test_default_command(self):
|
def test_default_command(self):
|
||||||
"""use exec in default.command"""
|
"""use exec in default.command"""
|
||||||
|
|
||||||
code, out, err = self.t()
|
code, out, err = self.t()
|
||||||
|
|
||||||
self.assertIn("hello", out)
|
self.assertIn("hello", out)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue