Skip to content

Commit

Permalink
Expand test
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Aug 9, 2023
1 parent e395952 commit fa191d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_pyramid.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ def tl_view(request):
svc = svcs.pyramid.get(Service)

assert (
svc == request.svcs.get(Service) == svcs.pyramid.get_abstract(Service)
svc
is request.svcs.get(Service)
is svcs.pyramid.services(request).get(Service)
is svcs.pyramid.get_abstract(Service)
)
assert (
request.registry["svcs_registry"]
Expand Down

0 comments on commit fa191d5

Please sign in to comment.