(self)
| 34 | assert_equal(foo(), b'123456789A12') |
| 35 | |
| 36 | def test_asterisk2(self): |
| 37 | foo = getattr(self.module, 'foo2') |
| 38 | assert_equal(foo(2), b'12') |
| 39 | assert_equal(foo(12), b'123456789A12') |
| 40 | assert_equal(foo(24), b'123456789A123456789B') |
| 41 | |
| 42 | def test_ftype(self): |
| 43 | ftype = self.module |
nothing calls this directly
no test coverage detected