summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2013-02-14 13:46:29 -0700
committerkennyballou <kballou@onyx.boisestate.edu>2013-02-14 13:46:29 -0700
commitaf38cbce8f3d1e27442f3ec47c5cc62d16c0f918 (patch)
tree3b22029b56352a37d15852af43d0f4ddcb885635
parent037397787ceb3b2def0e9e06787b11fafac7fdf0 (diff)
downloadxnt-af38cbce8f3d1e27442f3ec47c5cc62d16c0f918.tar.gz
xnt-af38cbce8f3d1e27442f3ec47c5cc62d16c0f918.tar.xz
Remove xenant tests
These will be replaced by tests on the individual commands
-rw-r--r--xnt/tests/xenanttests.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/xnt/tests/xenanttests.py b/xnt/tests/xenanttests.py
deleted file mode 100644
index 043b40d..0000000
--- a/xnt/tests/xenanttests.py
+++ /dev/null
@@ -1,41 +0,0 @@
-
-#!/usr/bin/env python
-
-# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
-
-# 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
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# 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, see <http://www.gnu.org/licenses/>.
-
-import sys
-import os
-import shutil
-import xnt
-import xnt.tasks
-import xnt.xenant as xenant
-import unittest
-
-
-class XenantTests(unittest.TestCase):
- def setUp(self):
- os.mkdir("temp")
-
- def tearDown(self):
- shutil.rmtree("temp")
-
- def test_version(self):
- actual = xenant.version()
- self.assertEqual(xnt.__version__, xenant.version())
-
-if __name__ == "__main__":
- unittest.main()