blob: 7db430a681929795f46602d49c2635dfe9fce864 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import unittest
import epubgrep
class TestEPubGrep(unittest.TestCase):
def test_epub_is_file(self):
with self.assertRaises(AssertionError):
epubgrep.grep_book('foo', 'bar', 0)
|