コード例 #1
0
def test_list_gte_zero():
    controls = [0, 1]
    obj = DoubleControl(controls=controls)
    assert obj.controls == controls
コード例 #2
0
def test_list_extra_params():
    DoubleControl(controls=[0, 1], foo="bar")
コード例 #3
0
def test_list_of_1():
    DoubleControl(controls=[1])
コード例 #4
0
def test_list_of_3():
    DoubleControl(controls=[1, 2, 3])
コード例 #5
0
def test_empty_list():
    DoubleControl(controls=[])
コード例 #6
0
def test_list_partial_lt_zero():
    DoubleControl(controls=[0, -1])
コード例 #7
0
def test_list_lt_zero():
    DoubleControl(controls=[-1, -2])
コード例 #8
0
def test_list_partial_non_int():
    DoubleControl(controls=[0, "foo"])
コード例 #9
0
def test_missing_controls():
    DoubleControl()