Best Python code snippet using tempest_python
test_inherits.py
Source:test_inherits.py  
...91        fetched_role_ids = [i['id'] for i in roles]92        self._list_assertions(roles, fetched_role_ids,93                              src_role['id'])94        # Check role on domains group95        self.roles_client.check_group_inherited_project_role_on_domain(96            self.domain['id'], self.group['id'], src_role['id'])97        # Revoke role from domains group98        self.roles_client.revoke_inherited_role_from_group_on_domain(99            self.domain['id'], self.group['id'], src_role['id'])100    @test.idempotent_id('18b70e45-7687-4b72-8277-b8f1a47d7591')101    def test_inherit_assign_check_revoke_roles_on_projects_user(self):102        # Create role103        src_role = self.roles_client.create_role(104            name=data_utils.rand_name('Role'))['role']105        self.addCleanup(self.roles_client.delete_role, src_role['id'])106        # Assign role on projects user107        self.roles_client.assign_inherited_role_on_projects_user(108            self.project['id'], self.user['id'], src_role['id'])109        # Check role on projects user...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
