Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 355 Bytes

VDR102.md

File metadata and controls

19 lines (14 loc) · 355 Bytes

VDR102. Scenario should be inherited from class vedro.Scenario

Scenarios, not inherited from vedro.Scenario, are not included in execution.

❌ Anti-pattern


class Scenario:
    subject = "register new user"

✅ Best practice

import vedro

class Scenario(vedro.Scenario):
    subject = "register new user"