Skip to content

Commit

Permalink
Cover lines added/changed
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-rodrigues committed Aug 25, 2022
1 parent ab873bb commit df72add
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/test_lhe_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,17 @@ def test_lhe_init(testdata_gzip_file):


def test_read_lhe(testdata_gzip_file):
assert pylhe.read_lhe(TEST_FILE)
assert pylhe.read_lhe(testdata_gzip_file)


def test_read_lhe_internals():
events = pylhe.read_lhe(TEST_FILE)

assert events
for e in events:
assert e is not None


def test_issue_102():
"""
Test a file containing lines starting with "#aMCatNLO".
Expand Down

0 comments on commit df72add

Please sign in to comment.