# HG changeset patch # User Thomas De Schampheleire # Date 1454534673 -3600 # 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 -r 1ed2e7271e03 -r 5349281d4c9d kallithea/tests/functional/test_admin_gists.py --- 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()