Exemplo n.º 1
0
def test_do_nothing_kw_args():
    do_nothing(x=1, b=2, c=3)
Exemplo n.º 2
0
def test_do_nothing_some_args():
    do_nothing(1, 2, 3)
Exemplo n.º 3
0
def test_do_nothing_no_args():
    do_nothing()
Exemplo n.º 4
0
 def test_do_nothing_kw_args(self):  # pylint: disable=no-self-use
     do_nothing(x=1, b=2, c=3)
Exemplo n.º 5
0
 def test_do_nothing_some_args(self):  # pylint: disable=no-self-use
     do_nothing(1, 2, 3)
Exemplo n.º 6
0
 def test_do_nothing_no_args(self):  # pylint: disable=no-self-use
     do_nothing()