mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-16 04:11:01 +00:00
use LinkCheckTest
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2956 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
92b5b65f00
commit
791bd87f6d
13 changed files with 13 additions and 13 deletions
|
|
@ -88,7 +88,7 @@ class NoQueryHttpRequestHandler (StoppableHttpRequestHandler):
|
|||
super(NoQueryHttpRequestHandler, self).do_HEAD()
|
||||
|
||||
|
||||
class HttpServerTest (linkcheck.checker.tests.StandardTest):
|
||||
class HttpServerTest (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Start/stop an HTTP server that can be used for testing.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import unittest
|
|||
import linkcheck.checker.tests
|
||||
|
||||
|
||||
class TestAnchor (linkcheck.checker.tests.StandardTest):
|
||||
class TestAnchor (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test anchor checking of HTML pages.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
|
||||
import linkcheck.checker.tests
|
||||
|
||||
class TestBase (linkcheck.checker.tests.StandardTest):
|
||||
class TestBase (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test links of base*.html files.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ import linkcheck.checker.tests
|
|||
import linkcheck.url
|
||||
|
||||
|
||||
class TestError (linkcheck.checker.tests.StandardTest):
|
||||
class TestError (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test unrecognized or syntactically wrong links.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ import os
|
|||
import linkcheck.checker.tests
|
||||
|
||||
|
||||
class TestFile (linkcheck.checker.tests.StandardTest):
|
||||
class TestFile (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test file:// link checking (and file content parsing).
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
|
||||
import linkcheck.checker.tests
|
||||
|
||||
class TestFrames (linkcheck.checker.tests.StandardTest):
|
||||
class TestFrames (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test link checking of HTML framesets.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import unittest
|
|||
import linkcheck.checker.tests
|
||||
|
||||
|
||||
class TestFtp (linkcheck.checker.tests.StandardTest):
|
||||
class TestFtp (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test ftp: link checking.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
|
||||
import linkcheck.checker.tests
|
||||
|
||||
class TestHttps (linkcheck.checker.tests.StandardTest):
|
||||
class TestHttps (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test https: link checking.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
|
||||
import linkcheck.checker.tests
|
||||
|
||||
class TestMail (linkcheck.checker.tests.StandardTest):
|
||||
class TestMail (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test mailto: link checking.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
|
||||
import linkcheck.checker.tests
|
||||
|
||||
class TestMisc (linkcheck.checker.tests.StandardTest):
|
||||
class TestMisc (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test link checking of HTML tags.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ import linkcheck.checker.tests
|
|||
import linkcheck.url
|
||||
|
||||
|
||||
class TestNews (linkcheck.checker.tests.StandardTest):
|
||||
class TestNews (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test nntp: and news: link checking.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import unittest
|
|||
import linkcheck.checker.tests
|
||||
|
||||
|
||||
class TestRobotsTxt (linkcheck.checker.tests.StandardTest):
|
||||
class TestRobotsTxt (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test robots.txt directive parsing in HTML files.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import unittest
|
|||
import linkcheck.checker.tests
|
||||
|
||||
|
||||
class TestTelnet (linkcheck.checker.tests.StandardTest):
|
||||
class TestTelnet (linkcheck.checker.tests.LinkCheckTest):
|
||||
"""
|
||||
Test telnet: link checking.
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue