MCPcopy Index your code
hub / github.com/python/cpython / test_empty__Call

Method test_empty__Call

Lib/test/test_unittest/testmock/testhelpers.py:131–140  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

129
130
131 def test_empty__Call(self):
132 args = _Call()
133
134 self.assertEqual(args, ())
135 self.assertEqual(args, ('foo',))
136 self.assertEqual(args, ((),))
137 self.assertEqual(args, ('foo', ()))
138 self.assertEqual(args, ('foo',(), {}))
139 self.assertEqual(args, ('foo', {}))
140 self.assertEqual(args, ({},))
141
142
143 def test_named_empty_call(self):

Callers

nothing calls this directly

Calls 2

_CallClass · 0.90
assertEqualMethod · 0.45

Tested by

no test coverage detected