1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Copyright 2012-2015 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). # TODO: Description here. """...""" __all__ = [] from maastesting.testcase import MAASTestCase class TestSomething(MAASTestCase): """TODO: Change test class name to match what you're testing.""" # resources = [...] def test_something(self): self.assertTrue(1) |