Exemplo n.º 1
0
def test_colored_deeply_nested_boxes_with_separator():
    print()
    with Style(31), Box.round() as b1, Style(39):
        print("Test 19")
        b1.sep()
        with Style(34), box() as b2, Style(39):
            print("Test 19")
            b2.sep()
            print("Test 19")
            b2.sep()
            with Style(33), box() as b3, Style(39):
                print("Test 19")
                b3.sep()
                print("Test 19")
        b1.sep()
        print("Test 19")
Exemplo n.º 2
0
def test_colored_nested_boxes_with_separator():
    print()
    with Style(31), Box.round(), Style(34), box() as b2, Style(39):
        print("Test 18")
        b2.sep()
        print("Test 18")
Exemplo n.º 3
0
def test_round_box():
    print()
    with Box.round() as b:
        print("Test 15")
        b.sep()
        print("Test 15")