(t *testing.T)
| 291 | } |
| 292 | |
| 293 | func TestPostChangesSinceInteger(t *testing.T) { |
| 294 | |
| 295 | base.SetUpTestLogging(t, base.LevelInfo, base.KeyAll) |
| 296 | |
| 297 | rt := rest.NewRestTester(t, |
| 298 | &rest.RestTesterConfig{ |
| 299 | SyncFn: `function(doc) {channel(doc.channel);}`, |
| 300 | DatabaseConfig: &rest.DatabaseConfig{}, // force use of default scope and collection |
| 301 | }) |
| 302 | defer rt.Close() |
| 303 | |
| 304 | postChangesSince(t, rt) |
| 305 | } |
| 306 | |
| 307 | func TestPostChangesWithQueryString(t *testing.T) { |
| 308 | rt := rest.NewRestTester(t, |
nothing calls this directly
no test coverage detected