forked from openlp/openlp
623a0974a5
Don't import setting keys that does not exists. Fixes bug 1458672. When going from a theme-blanked item to item which doesn't support theme-blanking, switch to black-blank. Only use transitions if we are changing slide. Fixes bug 1449064. Make translation of 'Advanced' specific to the bible plugin. Many PowerPoint fixes/improvements: * Make screenshots for main webview, even on single screen setup. Fixes bug 1449041. * Implement workaround for unblanking bug in PowerPoint 2010. * Open PowerPoint hidden so the main application window isn't visible. * Added support for odp for PowerPoint 2007 and newer. * Added support for Powerpoint events, which is used to update the slidecontroller if OpenLP is not in focus. * Minimized the flashing of the PowerPoint presentation window in the taskbar. bzr-revno: 2539 |
||
---|---|---|
.. | ||
functional | ||
helpers | ||
interfaces | ||
resources | ||
utils | ||
__init__.py | ||
README.txt |
Tests for OpenLP ================ This directory contains unit tests for OpenLP. The ``functional`` directory contains functional unit tests. Prerequisites ------------- In order to run the unit tests, you will need the following Python packages/libraries installed: - Mock - Nose On Ubuntu you can simple install the python-mock and python-nose packages. Most other distributions will also have these packages. On Windows and Mac OS X you will need to use ``pip`` or ``easy_install`` to install these packages. Running the Tests ----------------- To run the tests, navigate to the root directory of the OpenLP project, and then run the following command:: nosetests -v tests Or, to run only the functional tests, run the following command:: nosetests -v tests/functional Or, to run only a particular test suite within a file, run the following command:: nosetests -v tests/functional/test_applocation.py Finally, to only run a particular test, run the following command:: nosetests -v tests/functional/test_applocation.py:TestAppLocation.get_frozen_path_test