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 4f58367 commit 1891128Copy full SHA for 1891128
tests/test_unit_tests.py
@@ -402,6 +402,11 @@ def test_reader_is_embedded(self):
402
with Reader("image/jpeg", read_buffer, manifest_data) as reader:
403
self.assertFalse(reader.is_embedded(), "Remote manifest should return False")
404
405
+ # Test with cloud.jpg fixture which has a remote manifest (not embedded)
406
+ cloud_fixture_path = os.path.join(self.data_dir, "cloud.jpg")
407
+ with Reader("image/jpeg", cloud_fixture_path) as reader:
408
+ self.assertFalse(reader.is_embedded(), "cloud.jpg should have a remote manifest (not embedded)")
409
+
410
def test_reader_get_remote_url(self):
411
"""Test the get_remote_url method returns correct values for embedded and remote manifests."""
412
0 commit comments