Added a test for the zip tool.

This commit is contained in:
Andrew Hamilton 2016-02-09 22:18:46 +00:00
parent 4752f0d735
commit 5adb3b2eab
3 changed files with 10 additions and 0 deletions

View file

@ -140,6 +140,10 @@ class ToolsTestCase(unittest.TestCase):
self._sub_tests([(tools.splint, "hello.c", tools.Status.ok),
(tools.splint, "hello.h", tools.Status.ok)])
def test_unzip(self):
self._sub_tests([
(tools.unzip, "hi.zip", tools.Status.normal)])
def test_html_syntax(self):
self._sub_tests([
(tools.html_syntax, "hi.html", tools.Status.problem)])