summaryrefslogtreecommitdiff
path: root/tests/acl-with-group.scm
blob: 210cc214738583f8fd237bfed8089860ea988a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
(define (http-get uri)
  (unless (equal? uri
                  (string->uri "https://group-server.example.com/the#group"))
    (exit 1)
    (values
     (build-response #:headers '((content-type text/turtle)))
     "@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.

<#group> a vcard:Group;
  vcard:hasMember <https://other-user.example.com/profile/card#me> .
")))