Revision: 3205
Author: janne.t.harkonen
Date: Thu May 6 00:18:21 2010
Log: fixed after api change
http://code.google.com/p/robotframework/source/detail?r=3205
Modified:
/trunk/utest/running/test_keywords.py
=======================================
--- /trunk/utest/running/test_keywords.py Thu Mar 25 06:20:42 2010
+++ /trunk/utest/running/test_keywords.py Thu May 6 00:18:21 2010
@@ -39,11 +39,16 @@
return args[1]
-class FakeNamespace(_FakeNamespace):
-
+class _FakeSuite(object):
+ def __init__(self):
+ self.status = 'RUNNING'
+
+
+class FakeNamespace(_FakeNamespace):
def __init__(self, error=False):
_FakeNamespace.__init__(self)
self.error = error
+ self.suite = _FakeSuite()
def get_handler(self, kwname):
return MockHandler('Mocked.'+kwname, error=self.error)