(t *testing.T)
| 2149 | } |
| 2150 | |
| 2151 | func TestConflictRevLimitDefault(t *testing.T) { |
| 2152 | |
| 2153 | // Test Default Is the higher of the two |
| 2154 | db, ctx := setupTestDBAllowConflicts(t) |
| 2155 | defer db.Close(ctx) |
| 2156 | assert.Equal(t, uint32(DefaultRevsLimitConflicts), db.RevsLimit) |
| 2157 | } |
| 2158 | |
| 2159 | func TestConflictRevLimitAllowConflictsTrue(t *testing.T) { |
| 2160 | // Test AllowConflicts |
nothing calls this directly
no test coverage detected