# HG changeset patch # User Thomas De Schampheleire # Date 2016-02-03 22:24:33 # Node ID 5349281d4c9de569177e33dc0311ce0127b794bb # Parent 1ed2e7271e031febe49b9a366650998bf8c4c13d 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. diff --git a/kallithea/tests/functional/test_admin_gists.py b/kallithea/tests/functional/test_admin_gists.py --- a/kallithea/tests/functional/test_admin_gists.py +++ b/kallithea/tests/functional/test_admin_gists.py @@ -129,9 +129,9 @@ class TestGistsController(TestController 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()