You've already forked RecordFlux
mirror of
https://github.com/AdaCore/RecordFlux.git
synced 2026-02-12 13:01:56 -08:00
12 lines
297 B
Python
12 lines
297 B
Python
from pathlib import Path
|
|
|
|
TEST_DIR = Path("tests")
|
|
DATA_DIR = TEST_DIR / "data"
|
|
CAPTURED_DIR = DATA_DIR / "captured"
|
|
FIXTURE_DIR = DATA_DIR / "fixtures"
|
|
SPEC_DIR = DATA_DIR / "specs"
|
|
IDE_DIR = TEST_DIR / "ide"
|
|
GENERATED_DIR = TEST_DIR / "spark" / "generated"
|
|
|
|
EX_SPEC_DIR = Path("examples/specs")
|