← GDG /

#098 gdtest_sidebar_disabled

#098 gdtest_sidebar_disabled OK CONFIG
Tests sidebar_filter.enabled: false config
Tests sidebar_filter.enabled: false. The sidebar search/filter widget should NOT appear even if there are many items. Five functions (a through e) to ensure enough items exist.
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

K6
K6sidebar_filter.enabled: falseconfig

Source Files

๐Ÿ“ gdtest_sidebar_disabled/
๐Ÿ“„ __init__.py
"""Package testing sidebar_filter.enabled false config."""

__version__ = "0.1.0"
__all__ = ["func_a", "func_b", "func_c", "func_d", "func_e"]


def func_a() -> int:
    """
    Return the value A.

    Returns
    -------
    int
        The integer value A.
    """
    return 1


def func_b() -> int:
    """
    Return the value B.

    Returns
    -------
    int
        The integer value B.
    """
    return 2


def func_c() -> int:
    """
    Return the value C.

    Returns
    -------
    int
        The integer value C.
    """
    return 3


def func_d() -> int:
    """
    Return the value D.

    Returns
    -------
    int
        The integer value D.
    """
    return 4


def func_e() -> int:
    """
    Return the value E.

    Returns
    -------
    int
        The integer value E.
    """
    return 5
๐Ÿ“„ README.md
# gdtest-sidebar-disabled

Tests sidebar_filter.enabled: false config.
๐Ÿ“„ great-docs.yml
sidebar_filter:
  enabled: false