16 lines
520 B
Gherkin
16 lines
520 B
Gherkin
#Feature: showing off behave
|
|
#
|
|
# Scenario: run a simple test
|
|
# Given we have behave installed
|
|
# When we implement a test
|
|
# Then behave will test it for us!
|
|
|
|
Feature: ActivityPub Object
|
|
ActivityPub Object as defined in https://www.w3.org/TR/activitypub/#obj-id
|
|
|
|
Scenario:
|
|
Given A Fediverse server
|
|
When Receiving or querying an object
|
|
Then the response must contain an 'id' and a 'type' parameter
|
|
And The 'id' must resolve to the same object
|
|
And context must be ActivityPub
|