# coding: utf-8
from utils.test_config import *
from helix_web_services_client.models import LoginRequest
from types import *
api = api_no_login()
login_request = LoginRequest()
login_request.user = 'jdoe'
login_request.password = 'johndoe1A!'
login_response = api.login_post(login_request)
# print "ticket: %s\n" % login_response.ticket
assert type(login_response.ticket) is StringType
# |
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.py |
#1
|
19269 |
tjuricek |
Create infrastructure for calling python tests via TestNG, with our first (basic login) test. |
|
|