7 lines
205 B
Python
7 lines
205 B
Python
|
from papis_extract.annotation_data import Annotation
|
||
|
|
||
|
def test_colorname_exact():
|
||
|
sut = Annotation("testfile", colors={"stroke": (1.0, 0.0, 0.0)})
|
||
|
c_name = sut.colorname
|
||
|
assert c_name == "red"
|