def test_primary_keys_with_keys(self):
     """Test the method to check primary keys with Keys."""
     check_list = Keys.get_primary_keys()
     self.assertTrue(isinstance(check_list, list))
     self.assertTrue(len(check_list) == 1)
     self.assertTrue('id' in check_list)