File: __init__.py

package info (click to toggle)
python-couchdb 0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 232 kB
  • ctags: 246
  • sloc: python: 1,229; makefile: 26
file content (22 lines) | stat: -rw-r--r-- 562 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007 Christopher Lenz
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.

import unittest

from couchdb.tests import client, couch_tests, schema, view

def suite():
    suite = unittest.TestSuite()
    suite.addTest(client.suite())
    suite.addTest(couch_tests.suite())
    suite.addTest(schema.suite())
    suite.addTest(view.suite())
    return suite

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