File: wrongversion_plugin.py

package info (click to toggle)
python-cliapp 1.20150829-1~bpo8%2B1
  • links: PTS
  • area: main
  • in suites: jessie-backports
  • size: 400 kB
  • sloc: python: 2,917; makefile: 92
file content (14 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This is a test plugin that requires a newer application version than
# what the test harness specifies.

import cliapp

class WrongVersion(cliapp.Plugin):

    required_application_version = '9999.9.9'

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

    def enable(self):
        pass