(t *testing.T)
| 966 | } |
| 967 | |
| 968 | func TestComputeGitHubRateLimitDiff_BothNil(t *testing.T) { |
| 969 | diff := computeGitHubRateLimitDiff(nil, nil) |
| 970 | assert.Nil(t, diff, "both nil should return nil") |
| 971 | } |
| 972 | |
| 973 | func TestComputeGitHubRateLimitDiff_WithData(t *testing.T) { |
| 974 | rl1 := &GitHubRateLimitUsage{ |
nothing calls this directly
no test coverage detected