1
0
mirror of https://github.com/ihabunek/toot synced 2025-01-27 09:41:26 +01:00
2023-03-30 10:56:40 +02:00

20 lines
475 B
Python

def test_whoami(user, run):
out = run("whoami")
# TODO: test other fields once updating account is supported
assert f"@{user.username}" in out
def test_whois(app, friend, run):
variants = [
friend.username,
f"@{friend.username}",
f"{friend.username}@{app.instance}",
f"@{friend.username}@{app.instance}",
]
for username in variants:
out = run("whois", username)
assert f"@{friend.username}" in out