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