14 lines
281 B
Python
14 lines
281 B
Python
|
import pytest
|
||
|
from moto.dynamodb2.models import Table
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def table():
|
||
|
return Table(
|
||
|
"Forums",
|
||
|
schema=[
|
||
|
{"KeyType": "HASH", "AttributeName": "forum_name"},
|
||
|
{"KeyType": "RANGE", "AttributeName": "subject"},
|
||
|
],
|
||
|
)
|