(self)
| 54 | self.assertDictEqual(_({"bodyHTML": "<html/>"}), {"body_html": "<html/>"}) |
| 55 | |
| 56 | def testApiType(self): |
| 57 | self.assertEqual(github.Repository.Repository.is_rest(), True) |
| 58 | self.assertEqual(github.Repository.Repository.is_graphql(), False) |
| 59 | |
| 60 | self.assertEqual(github.RepositoryDiscussion.RepositoryDiscussion.is_rest(), False) |
| 61 | self.assertEqual(github.RepositoryDiscussion.RepositoryDiscussion.is_graphql(), True) |
| 62 | |
| 63 | def testMakeUnionClassAttributeFromTypeName(self): |
| 64 | req = mock.Mock(is_not_lazy=False) |
nothing calls this directly
no test coverage detected