Skip to content

Commit

Permalink
bump to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gxtrobot committed Oct 12, 2019
1 parent b43d717 commit 3626315
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aspider/__init__.py
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.1.2"
12 changes: 11 additions & 1 deletion tests/test_sample.py
@@ -1,4 +1,14 @@
# Sample Test passing with nose and pytest
import json


def test_pass():
assert True, "dummy sample test"
assert True, "dummy sample test"


def test_read_json_lines():
file = 'top250.json'
with open(file) as f:
for line in f:
d = json.loads(line)
print(d.keys())

0 comments on commit 3626315

Please sign in to comment.