summaryrefslogtreecommitdiff
path: root/trunk/test-plugins/wrongversion_plugin.py
blob: 4ecc6aac8388935e58a6eb00b36490449347410e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# This is a test plugin that requires a newer application version than
# what the test harness specifies.

import pluginmgr

class WrongVersion(pluginmgr.Plugin):

    required_application_version = '9999.9.9'

    def __init__(self, *args, **kwargs):
        pass