mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
7 lines
179 B
Python
7 lines
179 B
Python
from ..forms import LibraryForm
|
|
|
|
|
|
def test_library_form_success(tp, library, category):
|
|
form = LibraryForm(data={"categories": [category]})
|
|
assert form.is_valid() is True
|