# HG changeset patch # User Jeff Hammel # Date 1308333149 25200 # Node ID 6b99523536ee7e1e004ed8a43361ffef79926563 # Parent 23be092e6099ff798e4ebb2705894b9c04bc1152 tests work diff -r 23be092e6099 -r 6b99523536ee tests/doctest.txt --- a/tests/doctest.txt Fri Jun 17 10:40:51 2011 -0700 +++ b/tests/doctest.txt Fri Jun 17 10:52:29 2011 -0700 @@ -3,7 +3,7 @@ The obligatory imports:: - >>> from urlmatcher import UrlMatcher + >>> from urlmatch import UrlMatcher Test matching:: @@ -12,12 +12,14 @@ >>> matcher.add('https://www.example.com/foo/') >>> matcher.add('https://www.example.net/foo/') >>> sorted(matcher.match('example.com/foo/bar')) - ['http://www.example.com/foo/bar/fleem', ] + ['http://www.example.com/foo/bar/fleem'] >>> sorted(matcher.match('http://example.com/foo')) + ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah'] >>> sorted(matcher.match('example.com')) - >>> sorted(matcher.match('example')) - + ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah', 'https://www.example.com/foo/'] + >>> sorted(matcher.match('example')) # -> example.* + ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah', 'https://www.example.com/foo/', 'https://www.example.net/foo/'] Test url diffs:: - >>> matcher = urlmatcher() + >>> matcher = UrlMatcher() diff -r 23be092e6099 -r 6b99523536ee tests/test.py --- a/tests/test.py Fri Jun 17 10:40:51 2011 -0700 +++ b/tests/test.py Fri Jun 17 10:52:29 2011 -0700 @@ -9,7 +9,6 @@ import sys from optparse import OptionParser - def run_tests(raise_on_error=False, report_first=False): # add results here