# coding: utf-8
from utils.test_config import *
api = api_no_login()
login_request = LoginRequest()
login_request.user = 'jdoe'
login_request.password = 'invalid'
error_thrown = False
try:
login_response = api.login_post(login_request)
except Exception as e:
error_thrown = True
# print "ticket: %s\n" % login_response.ticket
assert error_thrown, "No exception was raised"
# |
Change |
User |
Description |
Committed |
|
#1
|
19553 |
swellard |
Move and rename clients |
|
|
//guest/perforce_software/helix-web-services/main/source/clients/2016.1.0/python/tests/default_api.login_post.illegal_auth.py |
#1
|
19270 |
tjuricek |
Add config, login, branches tests for python SDK and try to add more logging information. |
|
|