Mercurial > cgi-bin > hgweb.cgi > tincan
view tests/suite_15_prog_forward/__init__.py @ 72:e8b3b336e63e draft default tip
Update version.
author | David Barts <n5jrn@me.com> |
---|---|
date | Mon, 15 Jul 2019 13:17:48 -0700 |
parents | 88adf10be709 |
children |
line wrap: on
line source
# I m p o r t s import os, sys import requests from .. import ServerFixture, RoutesFixture # C l a s s e s class Fixture01(RoutesFixture): def test_01_good(self): response = requests.get("http://localhost:{0}/good.pspx".format(self.port)) self.assertEqual(response.status_code, 200) self.assertTrue("The current time on the server is" in response.text) def test_02_bad(self): response = requests.get("http://localhost:{0}/bad.pspx".format(self.port)) self.assertEqual(response.status_code, 404) def test_03_bad(self): response = requests.get("http://localhost:{0}/bad2.pspx".format(self.port)) self.assertEqual(response.status_code, 500)