File: __init__.py

package info (click to toggle)
wikitrans 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: python: 5,253; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
import unittest
import sys
from os.path import dirname, abspath

sys.path.insert(0,dirname(abspath(__file__)))

def wiki_test_suite():
    loader = unittest.TestLoader()
    return loader.loadTestFromModule()