summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/tests/test_widget_automation.py
diff options
context:
space:
mode:
Diffstat (limited to 'funcweb/funcweb/tests/test_widget_automation.py')
-rw-r--r--funcweb/funcweb/tests/test_widget_automation.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/funcweb/funcweb/tests/test_widget_automation.py b/funcweb/funcweb/tests/test_widget_automation.py
index f841c43..5a2247d 100644
--- a/funcweb/funcweb/tests/test_widget_automation.py
+++ b/funcweb/funcweb/tests/test_widget_automation.py
@@ -4,7 +4,7 @@ from turbogears import testutil
from funcweb.controllers import Root
import cherrypy
-from funcweb.widget_automation import WidgetListFactory
+from funcweb.widget_automation import WidgetListFactory,RemoteFormAutomation
cherrypy.root = Root()
class TestWidgetListFactory(unittest.TestCase):
@@ -44,7 +44,13 @@ class TestWidgetListFactory(unittest.TestCase):
for argument_name in compare_with.keys():
assert hasattr(widget_list_object,argument_name) == True
- #print getattr(widget_list_object,argument_name)
+ #print getattr(widget_list_object,argument_name)
+
+
+ def test_remote_form(self):
+ widget_list_object = self.widget_factory.get_widgetlist_object()
+ remote_form = RemoteFormAutomation(widget_list_object)
+ #print remote_form
def get_test_default_args(self):
return {