source: serversideredirectplugin/1.0/tracserversideredirect/tests/__init__.py

Last change on this file was 17142, checked in by Ryan J Ollos, 5 years ago

TracServerSideRedirectPlugin 1.0.1: Conform to PEP8

File size: 560 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2008-2010 Martin Scharrer <martin@scharrer-online.de>
5# Copyright (C) 2015 Ryan J Ollos <ryan.j.ollos@gmail.com>
6# All rights reserved.
7#
8# This software is licensed as described in the file COPYING, which
9# you should have received as part of this distribution.
10
11import unittest
12
13from tracserversideredirect.tests import plugin
14
15
16def suite():
17    suite = unittest.TestSuite()
18    suite.addTest(plugin.suite())
19    return suite
20
21
22if __name__ == '__main__':
23    unittest.main(defaultTest='suite')
Note: See TracBrowser for help on using the repository browser.