updated env var documentation

This commit is contained in:
Russell Horton
2012-12-20 14:53:51 -08:00
parent 2bc8cc01a5
commit 1de97d204d
3 changed files with 14 additions and 17 deletions

View File

@@ -2,11 +2,10 @@
// Unit tests for PHP Wordnik API client.
//
// Requires you to set four environment varibales:
// WN_APIKEY your API key
// WN_APIURL the API base url
// WN_USERNAME the username of a user
// WN_PASSWORD the user's password
// Requires you to set three environment varibales:
// API_KEY your API key
// USER_NAME the username of a user
// PASSWORD the user's password
// Run all tests:
//

View File

@@ -1,11 +1,10 @@
#!/usr/bin/env python
"""Unit tests for Python Wordnik API client.
Requires you to set four environment varibales:
WN_APIKEY your API key
WN_APIURL the API base url
WN_USERNAME the username of a user
WN_PASSWORD the user's password
Requires you to set three environment varibales:
API_KEY your API key
USER_NAME the username of a user
PASSWORD the user's password
Run all tests:

View File

@@ -1,15 +1,14 @@
#!/usr/bin/env python
"""Unit tests for Python Wordnik API client.
"""Unit tests for Python3 Wordnik API client.
Requires you to set four environment varibales:
WN_APIKEY your API key
WN_APIURL the API base url
WN_USERNAME the username of a user
WN_PASSWORD the user's password
Requires you to set three environment varibales:
API_KEY your API key
USER_NAME the username of a user
PASSWORD the user's password
Run all tests:
python BaseApiTest.py
python3.2 BaseApiTest.py
"""