mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
23 lines
581 B
Python
23 lines
581 B
Python
import pytest
|
|
from app import app
|
|
from app.default_data import populate_test_data
|
|
from app.models import db, License, Tag, User, UserRank
|
|
from utils import client, recreate_db
|
|
|
|
def test_homepage_empty(client):
|
|
"""Start with a blank database."""
|
|
|
|
rv = client.get("/")
|
|
assert b"No packages available" in rv.data and b"packagetile" not in rv.data
|
|
|
|
|
|
def test_homepage_with_contents(client):
|
|
"""Start with a test database."""
|
|
|
|
populate_test_data(db.session)
|
|
db.session.commit()
|
|
|
|
rv = client.get("/")
|
|
|
|
assert b"No packages available" not in rv.data and b"packagetile" in rv.data
|