mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-11-05 12:00:15 +00:00
16 lines
415 B
Python
16 lines
415 B
Python
from PIL import Image
|
|
|
|
from imaginairy.safety import create_safety_score
|
|
from tests import TESTS_FOLDER
|
|
|
|
|
|
def test_is_nsfw():
|
|
img = Image.open(f"{TESTS_FOLDER}/data/safety.jpg")
|
|
|
|
safety_score = create_safety_score(img)
|
|
assert safety_score.is_nsfw
|
|
|
|
img = Image.open(f"{TESTS_FOLDER}/data/girl_with_a_pearl_earring.jpg")
|
|
safety_score = create_safety_score(img)
|
|
assert not safety_score.is_nsfw
|