File: test_loader.py

package info (click to toggle)
tryton-server 1.6.1-2%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 2,440 kB
  • ctags: 3,017
  • sloc: python: 24,380; xml: 3,771; sql: 506; sh: 126; makefile: 74
file content (10 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#This file is part of Tryton.  The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.

from unittest import TestLoader


class Loader(TestLoader):

    def loadTestsFromModule(self, module):
        return module.suite()