Alexander Hess
917c217ca0
- the future (concrete) Galois `Field` implementation shall receive the name `GF2` (as per common math notation) => name conflict with the current `GF2` class implementing the elements of the future Galois `Field` => rename the current `GF2` class into `GF2Element` - because `GF2Element` is a bit tedius to type for the end user, we introduce a `gf2` alias in line with the naming convention for the built-in data types (e.g., `int` or `float`) that are also used as elements of (other) `Field`s => name conflict with the current `lalib.elements.gf2` module => rename the module into `lalib.elements.galois` - adjust the docstrings to refer to "the `gf2` type" - adjust the top-level imports and tests
25 lines
592 B
Python
25 lines
592 B
Python
"""Integrate `xdoctest` into the test suite.
|
|
|
|
Ensure all code snippets in docstrings are valid and functioning code.
|
|
|
|
Important: All modules with docstrings containing code snippets
|
|
must be put on the parameter list below by hand!
|
|
"""
|
|
|
|
import pytest
|
|
import xdoctest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"module",
|
|
[
|
|
"lalib",
|
|
"lalib.elements",
|
|
"lalib.elements.galois",
|
|
],
|
|
)
|
|
def test_docstrings(module):
|
|
"""Test code snippets within the package with `xdoctest`."""
|
|
result = xdoctest.doctest_module(module, "all")
|
|
|
|
assert result["n_failed"] == 0
|