Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_magic_stream(self):
"""File identification with magic_stream """
with open(TGA_FILE, "rb") as f:
stream = BytesIO(f.read())
result = puremagic.magic_stream(stream, TGA_FILE)
self.assertEqual(result[0].extension, ".tga")
self.assertRaises(ValueError, puremagic.magic_stream, BytesIO(b""))
def test_magic_stream(self):
"""File identification with magic_stream """
with open(TGA_FILE, "rb") as f:
stream = BytesIO(f.read())
result = puremagic.magic_stream(stream, TGA_FILE)
self.assertEqual(result[0].extension, ".tga")
self.assertRaises(ValueError, puremagic.magic_stream, BytesIO(b""))