1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

standardize test scripts to test_*.py instead of *_test.py

This commit is contained in:
Ilya Kreymer 2014-03-25 11:01:51 -07:00
parent 596f67437b
commit 87df7c22f1
5 changed files with 3 additions and 8 deletions

View File

@ -23,14 +23,11 @@ org,iana)/domains/root/servers 20140126201227 http://www.iana.org/domains/root/s
"""
from cdxserver_test import cdx_ops_test
from test_cdxserver import cdx_ops_test
from pywb import get_test_dir
test_zipnum = get_test_dir() + 'zipcdx/zipnum-sample.idx'
print test_zipnum
def zip_ops_test(url, **kwargs):
sources = test_zipnum
@ -40,5 +37,3 @@ def zip_ops_test(url, **kwargs):
if __name__ == "__main__":
import doctest
doctest.testmod()