test¶
Camelot unittest helpers. This module contains helper classes and functions to write unittests for Camelot applications. These are not the unittests for Camelot itself.
- class camelot.test.ApplicationViewsTest(methodName='runTest')[source]¶
Test various application level views, like the main window, the sidepanel
- class camelot.test.EntityViewsTest(methodName='runTest')[source]¶
Test the views of all the Entity subclasses, subclass this class to test all views in your application. This is done by calling the create_table_view and create_new_view on a set of admin objects. To tell the test case which admin objects should be tested, overwrite the get_admins method.
- class camelot.test.ModelThreadTestCase(methodName='runTest')[source]¶
Base class for implementing test cases that need a running model_thread.
- grab_widget(widget, suffix=None, subdir=None)[source]¶
Save a widget as a png file : :param widget: the widget to take a screenshot of :param suffix: string to add to the default filename of the image :param subdir: subdirectory of images_path in which to put the image file, defaults to
the name of the test class- the name of the png file is the name of the test case, without ‘test‘
- it is stored in the directory with the same name as the class, without ‘test’