File: test_readme.py

package info (click to toggle)
unidecode 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,592 kB
  • sloc: python: 49,168; perl: 30; sh: 9; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
import doctest
import sys

def additional_tests():
	if sys.maxunicode >= 0x10000:
		return doctest.DocFileSuite("../README.rst")
	else:
		return doctest.DocFileSuite()