Browse Source
We need to consolidate the unit tests into a separate directory so we can run just the unit tests in our py27 tox target. And we can in subsequent reviews add a parallel directory with functional tests. Related-Bug: #1439621 Change-Id: I8bf5af953fb31080096c371966f7dfda9edb1bf4changes/59/169359/5
67 changed files with 59 additions and 106 deletions
@ -1,28 +0,0 @@
|
||||
# -*- coding: utf-8 -*- |
||||
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may |
||||
# not use this file except in compliance with the License. You may obtain |
||||
# a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
||||
# License for the specific language governing permissions and limitations |
||||
# under the License. |
||||
|
||||
""" |
||||
test_magnum |
||||
---------------------------------- |
||||
|
||||
Tests for `magnum` module. |
||||
""" |
||||
|
||||
from magnum.tests import base |
||||
|
||||
|
||||
class TestMagnum(base.TestCase): |
||||
|
||||
def test_something(self): |
||||
pass |
@ -1,19 +0,0 @@
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
import unittest |
||||
|
||||
|
||||
class TestUnits(unittest.TestCase): |
||||
|
||||
def test_units(self): |
||||
assert 5 * 5 == 25 |
Loading…
Reference in new issue