File: __init__.py

package info (click to toggle)
debpartial-mirror 0.2.95
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 420 kB
  • ctags: 276
  • sloc: python: 1,901; makefile: 15
file content (32 lines) | stat: -rw-r--r-- 951 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##########################################################################
#
# __init__.py:  defines this directory as the 'tests' package.
#
#  Debian Partial Mirror is a tool to make complete and partial Debian mirrors.
#  See http://projetos.ossystems.com.br/debpartial-mirror/ for more information.
#    
# ====================================================================
# Copyright (c) 2002-2005 O.S. Systems.  All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#
#########################################################################
# Author: Otavio Salvador <otavio@ossystems.com.br>

import unittest

import TestConfig
import TestDownload

def suite():
	suite = unittest.TestSuite()

	suite.addTest(TestConfig.suite())
	suite.addTest(TestDownload.suite())


	return suite
	
if __name__ == '__main__':
	unittest.main(defaultTest='suite')