コード例 #1
0
ファイル: test_mechanoid.py プロジェクト: Maseli/fixofx
def test_https_specific_port_success():
    b = Browser()
    b.open('https://some_hopefully_nonexistant_domain:443/')
    assert test_wsgi_app.success()
コード例 #2
0
def test_https_specific_port_success():
    b = Browser()
    b.open('https://some_hopefully_nonexistant_domain:443/')
    assert test_wsgi_app.success()
コード例 #3
0
ファイル: test_mechanoid.py プロジェクト: Maseli/fixofx
def test_success():
    b = Browser()
    b.open('http://some_hopefully_nonexistant_domain:80/')
    assert test_wsgi_app.success()
コード例 #4
0
def test_success():
    b = Browser()
    b.open('http://some_hopefully_nonexistant_domain:80/')
    assert test_wsgi_app.success()