Files
website-v2/libraries/tests/fixtures.py
Frank Wiles cab536eb6a Library work
- Some initial model tests
- Added Issue and PR models for tracking
- Added ghapi dependency
2022-07-17 11:38:06 -05:00

13 lines
372 B
Python

import pytest
from model_bakery import baker
@pytest.fixture
def library(db):
return baker.make(
"libraries.Library",
name="multi_array",
description="Boost.MultiArray provides a generic N-dimensional array concept definition and common implementations of that interface.",
github_url="https://github.com/boostorg/multi_array",
)