summaryrefslogtreecommitdiff
path: root/morphlib/morphloader_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/morphloader_tests.py')
-rw-r--r--morphlib/morphloader_tests.py25
1 files changed, 2 insertions, 23 deletions
diff --git a/morphlib/morphloader_tests.py b/morphlib/morphloader_tests.py
index dd70c824..f9fa2a34 100644
--- a/morphlib/morphloader_tests.py
+++ b/morphlib/morphloader_tests.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014 Codethink Limited
+# Copyright (C) 2013-2015 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -10,8 +10,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-2 =*=
@@ -344,26 +343,6 @@ build-system: dummy
self.loader.validate(m)
self.assertEqual(m['arch'], 'armv7l')
- def test_validate_requires_build_deps_for_chunks_in_strata(self):
- m = morphlib.morphology.Morphology(
- {
- "kind": "stratum",
- "name": "foo",
- "chunks": [
- {
- "name": "foo",
- "repo": "foo",
- "ref": "foo",
- "morph": "foo",
- "build-mode": "bootstrap",
- }
- ],
- })
-
- self.assertRaises(
- morphlib.morphloader.NoBuildDependenciesError,
- self.loader.validate, m)
-
def test_validate_requires_build_deps_or_bootstrap_mode_for_strata(self):
m = morphlib.morphology.Morphology(
{