You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
434 B
14 lines
434 B
|
|
def test_root_init(): |
|
from ordr.resources import RootResource |
|
root = RootResource('request') |
|
assert root.__name__ is None |
|
assert root.__parent__ is None |
|
assert root.request == 'request' |
|
|
|
|
|
def test_root_acl(): |
|
from pyramid.security import Allow, Everyone, DENY_ALL |
|
from ordr.resources import RootResource |
|
root = RootResource(None) |
|
assert root.__acl__() == [(Allow, Everyone, 'view'), DENY_ALL]
|
|
|