mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
- Added example/test archive files in various formats - Fix permission issue for public vs contributor
11 lines
227 B
Python
11 lines
227 B
Python
import datetime
|
|
|
|
|
|
def test_version_creation(version):
|
|
today = datetime.date.today()
|
|
assert version.release_date < today
|
|
|
|
|
|
def test_version_file_creation(full_version_one):
|
|
assert full_version_one.files.count() == 3
|