We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f88cb3b commit 816f86aCopy full SHA for 816f86a
test_python.py
@@ -3,6 +3,7 @@
3
4
from needletail import (
5
NeedletailError,
6
+ PyFastxReader,
7
Record,
8
normalize_seq,
9
parse_fastx_file,
@@ -179,7 +180,7 @@ def test_can_parse_fastq_file(self):
179
180
self.assertTrue(i <= 2)
181
182
def test_pathlib_path_input(self):
- parse_fastx_file(Path(FASTA_FILE))
183
+ self.assertIsInstance(parse_fastx_file(Path(FASTA_FILE)), PyFastxReader)
184
185
186
class StrParsingTestCase(FileParsingTestCase):
0 commit comments