2017-04-10 07:04:03 +03:00
|
|
|
from graphene.test import Client
|
2017-07-13 07:45:06 +03:00
|
|
|
|
2016-06-15 09:48:25 +03:00
|
|
|
from ..data import setup
|
|
|
|
from ..schema import schema
|
2015-10-27 09:54:51 +03:00
|
|
|
|
2016-06-15 09:48:25 +03:00
|
|
|
setup()
|
2015-09-26 09:25:10 +03:00
|
|
|
|
2017-04-10 07:04:03 +03:00
|
|
|
client = Client(schema)
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2017-04-10 07:04:03 +03:00
|
|
|
|
|
|
|
def test_correct_fetch_first_ship_rebels(snapshot):
|
2016-06-15 09:48:25 +03:00
|
|
|
query = '''
|
|
|
|
query RebelsShipsQuery {
|
|
|
|
rebels {
|
|
|
|
name,
|
|
|
|
ships(first: 1) {
|
2016-06-16 08:45:28 +03:00
|
|
|
pageInfo {
|
|
|
|
startCursor
|
|
|
|
endCursor
|
|
|
|
hasNextPage
|
|
|
|
hasPreviousPage
|
|
|
|
}
|
2016-06-15 09:48:25 +03:00
|
|
|
edges {
|
2016-06-16 08:45:28 +03:00
|
|
|
cursor
|
2016-06-15 09:48:25 +03:00
|
|
|
node {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'''
|
2017-04-10 07:04:03 +03:00
|
|
|
snapshot.assert_match(client.execute(query))
|