コード例 #1
0
ファイル: test_server.py プロジェクト: raulpercy/libtmux
def test_88_colors(server):
    myserver = Server(colors=88)
    assert myserver.colors == 88

    proc = myserver.cmd('list-servers')

    assert '-8' in proc.cmd
    assert '-2' not in proc.cmd
コード例 #2
0
ファイル: test_server.py プロジェクト: raulpercy/libtmux
def test_256_colors(server):
    myserver = Server(colors=256)
    assert myserver.colors == 256

    proc = myserver.cmd('list-servers')

    assert '-2' in proc.cmd
    assert '-8' not in proc.cmd
コード例 #3
0
ファイル: test_server.py プロジェクト: tmux-python/libtmux
def test_88_colors(server):
    myserver = Server(colors=88)
    assert myserver.colors == 88

    proc = myserver.cmd("list-sessions")

    assert "-8" in proc.cmd
    assert "-2" not in proc.cmd
コード例 #4
0
ファイル: test_server.py プロジェクト: wing8279/libtmux
def test_88_colors(server):
    myserver = Server(colors=88)
    assert myserver.colors == 88

    proc = myserver.cmd('list-servers')

    assert '-8' in proc.cmd
    assert '-2' not in proc.cmd
コード例 #5
0
ファイル: test_server.py プロジェクト: wing8279/libtmux
def test_256_colors(server):
    myserver = Server(colors=256)
    assert myserver.colors == 256

    proc = myserver.cmd('list-servers')

    assert '-2' in proc.cmd
    assert '-8' not in proc.cmd
コード例 #6
0
ファイル: test_server.py プロジェクト: tmux-python/libtmux
def test_256_colors(server):
    myserver = Server(colors=256)
    assert myserver.colors == 256
    print(myserver.colors)

    proc = myserver.cmd("list-sessions")

    print("list-sessions", proc)

    assert "-2" in proc.cmd
    assert "-8" not in proc.cmd