|
Last change
on this file was
14003,
checked in by Ryan J Ollos, 9 years ago
|
|
Changed license to 3-Clause BSD with permission of author. Refs #11832.
|
|
File size:
405 bytes
|
| Line | |
|---|
| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| 3 | # Copyright (C) 2013-2014 Ryan J Ollos <ryan.j.ollos@gmail.com> |
|---|
| 4 | # |
|---|
| 5 | # This software is licensed as described in the file COPYING, which |
|---|
| 6 | # you should have received as part of this distribution. |
|---|
| 7 | # |
|---|
| 8 | |
|---|
| 9 | from unittest import TestSuite |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | def test_suite(): |
|---|
| 13 | suite = TestSuite() |
|---|
| 14 | |
|---|
| 15 | import dynfields.tests.options |
|---|
| 16 | suite.addTest(dynfields.tests.options.test_suite()) |
|---|
| 17 | |
|---|
| 18 | return suite |
|---|
Note: See
TracBrowser
for help on using the repository browser.