mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-05 03:35:52 +00:00
14 lines
230 B
Python
14 lines
230 B
Python
|
|
from . import fep_file
|
||
|
|
|
||
|
|
|
||
|
|
def test_fep_file():
|
||
|
|
file = fep_file.FepFile("a4ed")
|
||
|
|
|
||
|
|
assert file.status == "FINAL"
|
||
|
|
|
||
|
|
|
||
|
|
def test_implementation_count():
|
||
|
|
file = fep_file.FepFile("8b32")
|
||
|
|
|
||
|
|
assert file.implementation_count > 2
|