Add a user called freshuser that doesn't belong to anything.
This commit is contained in:
parent
5088fc9948
commit
22dd031f91
2 changed files with 4 additions and 0 deletions
|
@ -115,6 +115,10 @@ if __name__ == '__main__':
|
|||
new_user_2.verified = True
|
||||
new_user_2.save()
|
||||
|
||||
new_user_3 = model.create_user('freshuser', 'password', 'no@thanks.com')
|
||||
new_user_3.verified = True
|
||||
new_user_3.save()
|
||||
|
||||
__generate_repository(new_user_1, 'simple', 'Simple repository.', False,
|
||||
[], (4, [], ['latest', 'prod']))
|
||||
|
||||
|
|
Binary file not shown.
Reference in a new issue