| 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 | |
|---|
| 11 | import unittest |
|---|
| 12 | |
|---|
| 13 | from tracserversideredirect.tests import plugin |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | def suite(): |
|---|
| 17 | suite = unittest.TestSuite() |
|---|
| 18 | suite.addTest(plugin.suite()) |
|---|
| 19 | return suite |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | if __name__ == '__main__': |
|---|
| 23 | unittest.main(defaultTest='suite') |
|---|
Note: See
TracBrowser
for help on using the repository browser.