mirror of
https://github.com/simple-login/app.git
synced 2024-11-11 01:42:54 +08:00
11 lines
196 B
Python
11 lines
196 B
Python
from app.utils import random_string, random_words
|
|
|
|
|
|
def test_random_words():
|
|
s = random_words()
|
|
assert len(s) > 0
|
|
|
|
|
|
def test_random_string():
|
|
s = random_string()
|
|
assert len(s) > 0
|