mirror of
https://github.com/supabase/supabase.git
synced 2026-06-23 00:13:20 +08:00
14 lines
274 B
Python
14 lines
274 B
Python
from behave import *
|
|
|
|
@given('an anonymous user')
|
|
def step_impl(context):
|
|
pass
|
|
|
|
@when('an existing user')
|
|
def step_impl(context):
|
|
assert True is not False
|
|
|
|
@then('I sign up with a valid email and password')
|
|
def step_impl(context):
|
|
assert context.failed is False
|