mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-18 15:33:02 +00:00
Merge branch 'group_property_feature' of https://github.com/vladfreeze/jupyterhub into group_property_feature
This commit is contained in:
@@ -234,8 +234,14 @@ def test_cookie_secret_string_():
|
||||
|
||||
async def test_load_groups(tmpdir, request):
|
||||
to_load = {
|
||||
'blue': ['cyclops', 'rogue', 'wolverine'],
|
||||
'gold': ['storm', 'jean-grey', 'colossus'],
|
||||
'blue': {
|
||||
'users': ['cyclops', 'rogue', 'wolverine'],
|
||||
'properties': {'setting1': 'one', 'setting2': 'two'},
|
||||
},
|
||||
'gold': {
|
||||
'users': ['storm', 'jean-grey', 'colossus'],
|
||||
'properties': {'setting3': 'three', 'setting4': 'four'},
|
||||
},
|
||||
}
|
||||
kwargs = {'load_groups': to_load}
|
||||
ssl_enabled = getattr(request.module, "ssl_enabled", False)
|
||||
|
Reference in New Issue
Block a user