Attempt to pull workspace owner details from form

This commit is contained in:
richard-dds
2018-08-23 14:18:19 -04:00
parent 70cc82a1e7
commit e97fbde054
3 changed files with 46 additions and 3 deletions

5
tests/assert_util.py Normal file
View File

@@ -0,0 +1,5 @@
def dict_contains(superset, subset):
"""
Returns True if dict a is a superset of dict b.
"""
return all(item in superset.items() for item in subset.items())