Lines Matching refs:assertIsInstance
77 self.assertIsInstance(repr(d), str)
79 self.assertIsInstance(r, str)
83 self.assertIsInstance(r, str)
87 self.assertIsInstance(r, str)
111 self.assertIsInstance(d4.keys() & frozenset(d3.keys()), set)
112 self.assertIsInstance(frozenset(d3.keys()) & d4.keys(), set)
256 self.assertIsInstance(r, str)
260 self.assertIsInstance(r, str)
313 self.assertIsInstance(d.keys(), collections.abc.KeysView)
314 self.assertIsInstance(d.keys(), collections.abc.MappingView)
315 self.assertIsInstance(d.keys(), collections.abc.Set)
316 self.assertIsInstance(d.keys(), collections.abc.Sized)
317 self.assertIsInstance(d.keys(), collections.abc.Iterable)
318 self.assertIsInstance(d.keys(), collections.abc.Container)
320 self.assertIsInstance(d.values(), collections.abc.ValuesView)
321 self.assertIsInstance(d.values(), collections.abc.MappingView)
322 self.assertIsInstance(d.values(), collections.abc.Sized)
324 self.assertIsInstance(d.items(), collections.abc.ItemsView)
325 self.assertIsInstance(d.items(), collections.abc.MappingView)
326 self.assertIsInstance(d.items(), collections.abc.Set)
327 self.assertIsInstance(d.items(), collections.abc.Sized)
328 self.assertIsInstance(d.items(), collections.abc.Iterable)
329 self.assertIsInstance(d.items(), collections.abc.Container)