1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

[tests] add api test for group members, groups, group msgs, user msgs

This commit is contained in:
Chilledheart
2014-08-28 02:45:58 +08:00
committed by lins05
parent f7f304096b
commit e65248bcc2
8 changed files with 246 additions and 1 deletions

4
tests/common/utils.py Normal file
View File

@@ -0,0 +1,4 @@
import random, string
def randomword(length):
return ''.join(random.choice(string.lowercase) for i in range(length))