16 lines
449 B
Python
16 lines
449 B
Python
from src.exif_data import ExifData
|
|
import unittest
|
|
|
|
|
|
class TestExifData(unittest.TestCase):
|
|
def test_exif_data(self):
|
|
exif_data = ExifData(image_path="/path/to/image",
|
|
image_name="Image.jpeg",
|
|
make="CAMERA",
|
|
month=12,
|
|
day=12,
|
|
year=2023,
|
|
time=1278897213)
|
|
|
|
assert exif_data.make == "CAMERA"
|