Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 352708
Collapse All | Expand All

(-)testoob.orig/testoob-1.15.ebuild (+4 lines)
Lines 24-29 Link Here
24
24
25
DOCS="docs/*"
25
DOCS="docs/*"
26
26
27
src_prepare() {
28
	epatch "${FILESDIR}"/testoob-test.patch || die
29
}
30
27
src_test() {
31
src_test() {
28
	testing() {
32
	testing() {
29
		PATH="build-${PYTHON_ABI}/scripts-${PYTHON_ABI}:${PATH}" PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/alltests.py
33
		PATH="build-${PYTHON_ABI}/scripts-${PYTHON_ABI}:${PATH}" PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/alltests.py
(-)tests/large/test_commandline.py (-1 / +2 lines)
Lines 277-283 Link Here
277
277
278
    def testPDFReporting(self):
278
    def testPDFReporting(self):
279
        pdfcontents = self._get_file_report("pdf")
279
        pdfcontents = self._get_file_report("pdf")
280
        self.assertEquals( '%PDF-1.3', pdfcontents.splitlines()[0] )
280
        teststr = pdfcontents.splitlines()[0]
281
        self.assertTrue(teststr.startswith("%PDF-1"))
281
282
282
    def testGlob(self):
283
    def testGlob(self):
283
        args = _testoob_args(options=["-v", "--glob=*Database*"], tests=["CaseNames"])
284
        args = _testoob_args(options=["-v", "--glob=*Database*"], tests=["CaseNames"])

Return to bug 352708