This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
import sys | |
sys.path.append("./pywps-svn") | |
import pywps | |
import pywps.config | |
pywps.config.loadConfiguration('tests/pywps-no-logging.cfg') | |
class TestWps(unittest.TestCase): | |
def test_what_happen_on_process_errors(self): | |
wps = pywps.Pywps(pywps.METHOD_GET) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from nose.tools import assert_equals, assert_true | |
import sys | |
sys.path.append("./pywps-svn") | |
import pywps | |
def test_no_problems_passing_normal_chars(): | |
wps = pywps.Pywps(pywps.METHOD_GET) | |
wps.parseRequest( | |
'service=WPS&version=1.0.0&' | |
'request=Execute&identifier=stub&' |
NewerOlder