@@ -179,7 +179,7 @@ def test_pagination_respects_first_after():
179
179
'pageInfo' : {
180
180
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
181
181
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
182
- 'hasPreviousPage' : False ,
182
+ 'hasPreviousPage' : True ,
183
183
'hasNextPage' : True ,
184
184
}
185
185
}
@@ -207,7 +207,7 @@ def test_pagination_respects_longfirst_after():
207
207
'pageInfo' : {
208
208
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
209
209
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjQ=' ,
210
- 'hasPreviousPage' : False ,
210
+ 'hasPreviousPage' : True ,
211
211
'hasNextPage' : False ,
212
212
}
213
213
}
@@ -231,7 +231,7 @@ def test_pagination_respects_last_before():
231
231
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
232
232
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
233
233
'hasPreviousPage' : True ,
234
- 'hasNextPage' : False ,
234
+ 'hasNextPage' : True ,
235
235
}
236
236
}
237
237
assert c .to_dict () == expected
@@ -259,7 +259,7 @@ def test_pagination_respects_longlast_before():
259
259
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjA=' ,
260
260
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
261
261
'hasPreviousPage' : False ,
262
- 'hasNextPage' : False ,
262
+ 'hasNextPage' : True ,
263
263
}
264
264
}
265
265
assert c .to_dict () == expected
@@ -284,7 +284,7 @@ def test_first_after_before_few():
284
284
'pageInfo' : {
285
285
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
286
286
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
287
- 'hasPreviousPage' : False ,
287
+ 'hasPreviousPage' : True ,
288
288
'hasNextPage' : True ,
289
289
}
290
290
}
@@ -314,8 +314,8 @@ def test_first_after_before_many():
314
314
'pageInfo' : {
315
315
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
316
316
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
317
- 'hasPreviousPage' : False ,
318
- 'hasNextPage' : False ,
317
+ 'hasPreviousPage' : True ,
318
+ 'hasNextPage' : True ,
319
319
}
320
320
}
321
321
assert c .to_dict () == expected
@@ -344,8 +344,8 @@ def test_first_after_before_exact():
344
344
'pageInfo' : {
345
345
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
346
346
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
347
- 'hasPreviousPage' : False ,
348
- 'hasNextPage' : False ,
347
+ 'hasPreviousPage' : True ,
348
+ 'hasNextPage' : True ,
349
349
}
350
350
}
351
351
assert c .to_dict () == expected
@@ -371,7 +371,7 @@ def test_last_after_before_few():
371
371
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
372
372
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
373
373
'hasPreviousPage' : True ,
374
- 'hasNextPage' : False ,
374
+ 'hasNextPage' : True ,
375
375
}
376
376
}
377
377
assert c .to_dict () == expected
@@ -400,8 +400,8 @@ def test_last_after_before_many():
400
400
'pageInfo' : {
401
401
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
402
402
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
403
- 'hasPreviousPage' : False ,
404
- 'hasNextPage' : False ,
403
+ 'hasPreviousPage' : True ,
404
+ 'hasNextPage' : True ,
405
405
}
406
406
}
407
407
assert c .to_dict () == expected
@@ -430,8 +430,8 @@ def test_last_after_before_exact():
430
430
'pageInfo' : {
431
431
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
432
432
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
433
- 'hasPreviousPage' : False ,
434
- 'hasNextPage' : False ,
433
+ 'hasPreviousPage' : True ,
434
+ 'hasNextPage' : True ,
435
435
}
436
436
}
437
437
assert c .to_dict () == expected
@@ -534,8 +534,8 @@ def test_no_elements_cursors_cross():
534
534
'pageInfo' : {
535
535
'startCursor' : None ,
536
536
'endCursor' : None ,
537
- 'hasPreviousPage' : False ,
538
- 'hasNextPage' : False ,
537
+ 'hasPreviousPage' : True ,
538
+ 'hasNextPage' : True ,
539
539
}
540
540
}
541
541
assert c .to_dict () == expected
@@ -633,7 +633,7 @@ def test_list_slice_works_with_a_just_right_array_slice():
633
633
'pageInfo' : {
634
634
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
635
635
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
636
- 'hasPreviousPage' : False ,
636
+ 'hasPreviousPage' : True ,
637
637
'hasNextPage' : True ,
638
638
}
639
639
}
@@ -664,7 +664,7 @@ def test_list_slice_works_with_an_oversized_array_slice_left_side():
664
664
'pageInfo' : {
665
665
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjE=' ,
666
666
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
667
- 'hasPreviousPage' : False ,
667
+ 'hasPreviousPage' : True ,
668
668
'hasNextPage' : True ,
669
669
}
670
670
}
@@ -691,7 +691,7 @@ def test_list_slice_works_with_an_oversized_array_slice_right_side():
691
691
'pageInfo' : {
692
692
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
693
693
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
694
- 'hasPreviousPage' : False ,
694
+ 'hasPreviousPage' : True ,
695
695
'hasNextPage' : True ,
696
696
}
697
697
}
@@ -718,7 +718,7 @@ def test_list_slice_works_with_an_oversized_array_slice_both_sides():
718
718
'pageInfo' : {
719
719
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
720
720
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
721
- 'hasPreviousPage' : False ,
721
+ 'hasPreviousPage' : True ,
722
722
'hasNextPage' : True ,
723
723
}
724
724
}
@@ -749,7 +749,7 @@ def test_list_slice_works_with_an_undersized_array_slice_left_side():
749
749
'pageInfo' : {
750
750
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
751
751
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjQ=' ,
752
- 'hasPreviousPage' : False ,
752
+ 'hasPreviousPage' : True ,
753
753
'hasNextPage' : False ,
754
754
}
755
755
}
@@ -780,7 +780,7 @@ def test_list_slice_works_with_an_undersized_array_slice_right_side():
780
780
'pageInfo' : {
781
781
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjI=' ,
782
782
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
783
- 'hasPreviousPage' : False ,
783
+ 'hasPreviousPage' : True ,
784
784
'hasNextPage' : True ,
785
785
}
786
786
}
@@ -807,7 +807,7 @@ def test_list_slice_works_with_an_undersized_array_slice_both_sides():
807
807
'pageInfo' : {
808
808
'startCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
809
809
'endCursor' : 'YXJyYXljb25uZWN0aW9uOjM=' ,
810
- 'hasPreviousPage' : False ,
810
+ 'hasPreviousPage' : True ,
811
811
'hasNextPage' : True ,
812
812
}
813
813
}
0 commit comments