diff options
author | Bruno Wagner Goncalves <bwagner@thoughtworks.com> | 2014-08-04 20:47:09 -0300 |
---|---|---|
committer | Bruno Wagner Goncalves <bwagner@thoughtworks.com> | 2014-08-04 20:48:59 -0300 |
commit | 4fa9efb2e1825f39bc0d6b3c723b86db65a2b7a0 (patch) | |
tree | 863b4d5f21291ea01c16987de23090f3ddbde270 /service/test | |
parent | 3b03c4406592bb8e49e0ffab08d9eae292d0b51c (diff) |
Added first client test and hardcoded some initial values that will be moved to config
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/leap/client_test.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/service/test/leap/client_test.py b/service/test/leap/client_test.py new file mode 100644 index 00000000..3f2a869e --- /dev/null +++ b/service/test/leap/client_test.py @@ -0,0 +1,10 @@ +import sys +import os +sys.path.insert(0, os.environ['APP_ROOT']) + +from app.leap.client import Client + + +def test_initialization(): + client = Client() + print('Run') |