← GDG /

#105 gdtest_display_name

#105 gdtest_display_name OK CONFIG
Tests display_name: My Pretty Library config
Tests display_name: 'My Pretty Library'. Site title in navbar and browser tab should show 'My Pretty Library', not the raw package name. Two functions (init, cleanup).
View Site → Build Log ๐Ÿงช Test Coverage

Build Mode

● Has great-docs.yml

This package ships a pre-supplied config. The great-docs init step is skipped and great-docs build uses the spec-defined configuration directly. Tests specific config options and their rendered output.

Dimensions

K12
K12display_name overrideconfig

Source Files

๐Ÿ“ gdtest_display_name/
๐Ÿ“„ __init__.py
"""Package testing display_name config."""

__version__ = "0.1.0"
__all__ = ["init", "cleanup"]


def init(config: dict) -> None:
    """
    Initialize the library with the given configuration.

    Parameters
    ----------
    config
        A dictionary of configuration options.

    Returns
    -------
    None
    """
    pass


def cleanup() -> None:
    """
    Clean up all resources held by the library.

    Returns
    -------
    None
    """
    pass
๐Ÿ“„ README.md
# gdtest-display-name

Tests display_name: My Pretty Library config.
๐Ÿ“„ great-docs.yml
display_name: My Pretty Library