(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func Test_ConfigOverrideCursorKey(t *testing.T) { |
| 69 | t.Parallel() |
| 70 | |
| 71 | cfg := configDefault(Config{ |
| 72 | CursorKey: "after", |
| 73 | CursorParam: "starting_after", |
| 74 | }) |
| 75 | require.Equal(t, "after", cfg.CursorKey) |
| 76 | require.Equal(t, "starting_after", cfg.CursorParam) |
| 77 | } |
| 78 | |
| 79 | func Test_ConfigNegativeDefaults(t *testing.T) { |
| 80 | t.Parallel() |
nothing calls this directly
no test coverage detected