diff --git a/.hgignore b/.hgignore index 7abd490..0222ec8 100644 --- a/.hgignore +++ b/.hgignore @@ -39,6 +39,7 @@ pip-log.txt .coverage .tox nosetests.xml +.pytest_cache # Translations *.mo diff --git a/Makefile b/Makefile index c052994..cca54e2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -all: bdist +all: test bdist bdist: python3 setup.py sdist bdist_wheel + +test: + pytest -q diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..18522a6 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +testpaths = tests +python_files = test*.py diff --git a/setup.py b/setup.py index 43546cc..7471035 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ tests_require = [ setup( name='flatfilecms', - version='0.2', + version='0.3', description='flat-file CMS suitable for static site', long_description=README + '\n\n' + CHANGES, classifiers=[ diff --git a/tests/pages/index.md b/tests/pages/index.md new file mode 100644 index 0000000..5466d95 --- /dev/null +++ b/tests/pages/index.md @@ -0,0 +1,7 @@ +--- +title: Заглушка для тестов БД +description: Тестовая страница +template: onepage +--- + +Hello World! diff --git a/tests/test_pages.py b/tests/test_pages.py new file mode 100644 index 0000000..82d09d3 --- /dev/null +++ b/tests/test_pages.py @@ -0,0 +1,16 @@ +import pytest + + +@pytest.fixture +def pages(): + from flatfilecms.resources import Root + return Root('../tests/pages') + + +def test_loading(pages): + assert 'index' in pages + + +def test_db_contains_pages(pages): + assert pages['index'].title == 'Заглушка для тестов БД' + pass