コード例 #1
0
ファイル: test.py プロジェクト: StremorCorp/NoseGAE
from webtest import TestApp
from helloworld import application

app = TestApp(application())

def test_index():
    # fires off a task queue and should pass without exceptions
    response = app.get('/')
    assert 'Hello world!' in str(response)
コード例 #2
0
ファイル: main.py プロジェクト: trammell/NoseGAE
def main():
    wsgiref.handlers.CGIHandler().run(application())
コード例 #3
0
ファイル: test.py プロジェクト: trammell/NoseGAE
from webtest import TestApp
from helloworld import application

app = TestApp(application())


def test_index():
    # this will call get_current_user()
    response = app.get('/')
    assert 'Hello world!' in str(response)