Tests: Commented tests are now active and marked as expected failures

This commit is contained in:
Renato Alves
2015-06-09 23:46:50 +01:00
parent fad867e86b
commit 4dd09ca13f
2 changed files with 207 additions and 143 deletions

View File

@@ -64,25 +64,28 @@ class TestMath(TestCase):
code, out, err = self.t(('_get', '2.due'))
self.assertEqual(out, self.when)
# def test_compact_arg_quoted(self):
# """compact arg quoted"""
# code, out, err = self.t(('_get', '3.due'))
# self.assertEqual(out, self.when)
@unittest.expectedFailure
def test_compact_arg_quoted(self):
"""compact arg quoted"""
code, out, err = self.t(('_get', '3.due'))
self.assertEqual(out, self.when)
def test_sparse_value_quoted(self):
"""sparse value quoted"""
code, out, err = self.t(('_get', '4.due'))
self.assertEqual(out, self.when)
# def test_sparse_arg_quoted(self):
# """sparse arg quoted"""
# code, out, err = self.t(('_get', '5.due'))
# self.assertEqual(out, self.when)
@unittest.expectedFailure
def test_sparse_arg_quoted(self):
"""sparse arg quoted"""
code, out, err = self.t(('_get', '5.due'))
self.assertEqual(out, self.when)
# def test_sparse_arg_quoted_literal(self):
# """sparse arg quoted literal"""
# code, out, err = self.t(('_get', '6.due'))
# self.assertEqual(out, self.when)
@unittest.expectedFailure
def test_sparse_arg_quoted_literal(self):
"""sparse arg quoted literal"""
code, out, err = self.t(('_get', '6.due'))
self.assertEqual(out, self.when)
if __name__ == "__main__":