mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-05 19:55:46 +00:00
14 lines
270 B
Python
14 lines
270 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
from scripts.tools import Readme
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.mark.skip("Only is correct for main branch and not pull requests")
|
||
|
|
def test_readme():
|
||
|
|
with open("README.md") as f:
|
||
|
|
lines = f.readlines()
|
||
|
|
|
||
|
|
expected = Readme().content
|
||
|
|
|
||
|
|
assert lines == expected
|