From 4b292b46acb6ecf08fbfe980cefaaeba51199aab Mon Sep 17 00:00:00 2001 From: Ben Tremblay Date: Thu, 05 Nov 2009 19:53:51 +0000 Subject: publish now returns the newly published tutorial id --- (limited to 'tests') diff --git a/tests/storetests.py b/tests/storetests.py index 1752fe6..f3d813c 100644 --- a/tests/storetests.py +++ b/tests/storetests.py @@ -15,6 +15,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import unittest +import uuid from tests.utils import skip, catch_unimplemented import random @@ -99,13 +100,14 @@ class StoreProxyLoginTest(unittest.TestCase): 'name': 'newtut', 'summary': 'This is a tutorial', 'filename': 'test.xml', + 'guid': str(uuid.uuid1()), 'homepage': 'http://google.com', 'version': '1', 'cat1': '17', 'cat2': '18', 'cat3': '' } - assert self.store.publish('This should be a real tutorial...', tutorial_info) + assert self.store.publish('This should be a real tutorial...', tutorial_info) != -1 @catch_unimplemented def test_unpublish(self): -- cgit v0.9.1