Skip to content

Commit

Permalink
update unit test with JECSand#10 bug fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
JECSand committed Aug 24, 2018
1 parent 65f66c9 commit a0e57ea
Show file tree
Hide file tree
Showing 8 changed files with 671 additions and 0 deletions.
Binary file added dist/yahoofinancials-1.1.tar.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions test/test_yahoofinancials.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ def test_yf_module_methods(self):
self.assertEqual(True, True)
else:
self.assertEqual(False, True)
if isinstance(self.test_yf_stock_single.get_net_income(), int):
self.assertEqual(True, True)
else:
self.assertEqual(False, True)
# Treasuries
if isinstance(self.test_yf_treasuries_single.get_current_price(), float):
self.assertEqual(True, True)
Expand Down
651 changes: 651 additions & 0 deletions yahoofinancials.egg-info/PKG-INFO

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions yahoofinancials.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
MANIFEST.in
README.rst
setup.py
test/test_yahoofinancials.py
yahoofinancials/__init__.py
yahoofinancials.egg-info/PKG-INFO
yahoofinancials.egg-info/SOURCES.txt
yahoofinancials.egg-info/dependency_links.txt
yahoofinancials.egg-info/not-zip-safe
yahoofinancials.egg-info/requires.txt
yahoofinancials.egg-info/top_level.txt
1 change: 1 addition & 0 deletions yahoofinancials.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions yahoofinancials.egg-info/not-zip-safe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions yahoofinancials.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
beautifulsoup4
pytz
1 change: 1 addition & 0 deletions yahoofinancials.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yahoofinancials

0 comments on commit a0e57ea

Please sign in to comment.