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