From cbd822c9dfe8cf18d828bd558290f15775b4d837 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Fri, 17 Jul 2009 19:40:47 +0200 Subject: tests: First work on the new testsuite. The module tests.test_all will run all available tests. Each test placed herein must be using unittest and provide at least 1 test case. It must be prefixed with test_. --- tests/getcache_mem_corruption.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 tests/getcache_mem_corruption.py (limited to 'tests/getcache_mem_corruption.py') diff --git a/tests/getcache_mem_corruption.py b/tests/getcache_mem_corruption.py deleted file mode 100644 index c6e5ff80..00000000 --- a/tests/getcache_mem_corruption.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/python -import apt -import apt_pkg -import re - -import unittest - -class TestGetCache(unittest.TestCase): - - def setUp(self): - apt_pkg.InitConfig() - apt_pkg.InitSystem() - - def testWrongInvocation(self): - # wrongly invoke GetCache() rather than GetDepCache() - apt_cache = apt_pkg.Cache() - self.assertRaises(ValueError, apt_pkg.Cache, apt_cache) - - def testProperInvocation(self): - apt_cache = apt_pkg.Cache(apt.progress.OpTextProgress()) - apt_depcache = apt_pkg.DepCache(apt_cache) - -if __name__ == "__main__": - unittest.main() -- cgit v1.2.3