mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
- Some initial model tests - Added Issue and PR models for tracking - Added ghapi dependency
13 lines
372 B
Python
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",
|
|
)
|