mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
- Added ListView and DetailView - Move to pytest style tests - Fix migrations to be clean to rebuild and throw away existing data - Add model_bakery
7 lines
128 B
Python
7 lines
128 B
Python
import datetime
|
|
|
|
|
|
def test_version_creation(version):
|
|
today = datetime.date.today()
|
|
assert version.release_date < today
|