23 lines
611 B
Python
23 lines
611 B
Python
# ScoDoc Unit Tests
|
|
|
|
"""Set of unit tests for ScoDoc
|
|
"""
|
|
|
|
|
|
def call_view(view_function, *args, **kwargs):
|
|
"""Undecorate a view and call it directly."""
|
|
# On a 3 décorateurs: @scodoc, @permission_required, @scodoc7func
|
|
func = (
|
|
view_function.__closure__[0]
|
|
.cell_contents.__closure__[0]
|
|
.cell_contents.__closure__[0]
|
|
.cell_contents
|
|
)
|
|
assert func
|
|
return func(*args, **kwargs)
|
|
|
|
|
|
def dict_include(d: dict, ref: dict) -> bool:
|
|
"""Checks that all keys in ref are in d, and with the same value."""
|
|
return all((k in d) and (d[k] == ref[k]) for k in ref)
|