changeset 5698:5349281d4c9d

tests: gists: comment out always-skipped test of put functionality There is little sense in always skipping a test because the tested functionality is not implemented. Instead, comment out the test and leave it to the future implementer to re-enable it.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Wed, 03 Feb 2016 22:24:33 +0100
parents 1ed2e7271e03
children 6a83b399bb3c
files kallithea/tests/functional/test_admin_gists.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/tests/functional/test_admin_gists.py	Wed Feb 03 22:21:31 2016 +0100
+++ b/kallithea/tests/functional/test_admin_gists.py	Wed Feb 03 22:24:33 2016 +0100
@@ -129,9 +129,9 @@
         self.log_user()
         response = self.app.get(url('new_gist'))
 
-    def test_update(self):
-        self.skipTest('not implemented')
-        response = self.app.put(url('gist', gist_id=1))
+    # Functionality currently not implemented
+    #def test_update(self):
+    #    response = self.app.put(url('gist', gist_id=1))
 
     def test_delete(self):
         self.log_user()