The subject is used to represent user intentions, and intentions can not be empty.
# scenarios/register_user.py
class Scenario(vedro.Scenario):
subject = ""
def when(self):
self.response = ...
# scenarios/register_user.py
class Scenario(vedro.Scenario):
subject = "register new user"
def when(self):
self.response = ...