From 3c8974ee74ae37d3e7c4fc252c4680a13b8ca3f2 Mon Sep 17 00:00:00 2001 From: DasMoorhuhn Date: Sun, 17 Dec 2023 21:36:32 +0100 Subject: [PATCH] activate apple test --- tests/test_with_real_data.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_with_real_data.py b/tests/test_with_real_data.py index e05068c..aeddb93 100644 --- a/tests/test_with_real_data.py +++ b/tests/test_with_real_data.py @@ -42,8 +42,11 @@ class TestSamsung(unittest.TestCase): assert image.make == "samsung" -@unittest.skip("") class TestApple(unittest.TestCase): - def test_iphone(self): - pass + def test_iphone_x(self): + copy_images(brand="iphone", model="x") + files = recursive_scan_folder(path=TEST_FOLDER) + meta_data = get_meta_data(images=files) + for image in meta_data: + assert image.make == "Apple"