Skip to content

Commit

Permalink
Wrote test for Client class init function.
Browse files Browse the repository at this point in the history
  • Loading branch information
RackReaver committed Apr 18, 2019
1 parent 494269d commit 41ecf51
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
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 41ecf51

Please sign in to comment.