Skip to content

Commit

Permalink
Merge pull request #2 from RackReaver/develop
Browse files Browse the repository at this point in the history
Reconfigured files to test Travis deploy again.
  • Loading branch information
RackReaver authored Apr 18, 2019
2 parents ccd5c68 + 41ecf51 commit 1d1039c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
15 changes: 11 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
atomicwrites==1.3.0
attrs==19.1.0
autopep8==1.4.3
beautifulsoup4==4.7.1
bs4==0.0.1
certifi==2018.11.29
certifi==2019.3.9
chardet==3.0.4
colorama==0.4.1
idna==2.8
more-itertools==7.0.0
pluggy==0.9.0
py==1.8.0
pycodestyle==2.5.0
pytest==4.3.0
requests==2.21.0
selenium==3.141.0
soupsieve==1.8
urllib3==1.24.1
webencodings==0.5.1
six==1.12.0
soupsieve==1.9.1
urllib3==1.24.2
versioneer==0.18
Empty file added tests/__init__.py
Empty file.
10 changes: 10 additions & 0 deletions tests/test_remedy_tools.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import pytest

import remedy_tools


def test_Client_init():
test_client = remedy_tools.Client(
'http://test.com', 'C:/Users/admin/chromedriver.exe')
assert test_client.link == 'http://test.com'
assert test_client.driver == 'C:/Users/admin/chromedriver.exe'

0 comments on commit 1d1039c

Please sign in to comment.