File: test_groupbox.py

package info (click to toggle)
qtile 0.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,004 kB
  • sloc: python: 49,959; ansic: 4,371; xml: 324; sh: 260; makefile: 218
file content (27 lines) | stat: -rw-r--r-- 816 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import pytest

from libqtile import config, widget
from libqtile.bar import Bar
from test.helpers import BareConfig


class GroupBoxConfig(BareConfig):
    screens = [
        config.Screen(
            top=Bar([widget.GroupBox(), widget.GroupBox(name="has_markup", markup=True)], 24)
        )
    ]
    groups = [config.Group("1", label="<sup>1</sup>")]


groupbox_config = pytest.mark.parametrize("manager", [GroupBoxConfig], indirect=True)


@groupbox_config
def test_groupbox_markup(manager):
    """Group labels can support markup but this is disabled by default."""
    no_markup = manager.c.widget["groupbox"]
    has_markup = manager.c.widget["has_markup"]

    # If markup is disabled, text will include markup tags so widget will be wider
    assert no_markup.info()["width"] > has_markup.info()["width"]