diff options
Diffstat (limited to 'test/test_netstring.py')
-rw-r--r-- | test/test_netstring.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/test_netstring.py b/test/test_netstring.py index efcfd83f..5146d150 100644 --- a/test/test_netstring.py +++ b/test/test_netstring.py @@ -16,13 +16,6 @@ class uNetstring(libpry.AutoTree): for test, result in tests: assert netstring.header(test) == result - def test_encode(self): - tests = [ ("netstring", "9:netstring,"), - ("Will McGugan", "12:Will McGugan,"), - ("", "0:,") ] - for test, result in tests: - assert netstring.encode(test) == result - def test_file_encoder(self): file_out = StringIO() data = self.test_data.split() |