Philip Graf

Results 4 comments of Philip Graf

This might be the culprit. [Replacing](https://github.com/kotest/kotest/pull/3982/files#diff-07978b8f35a89840ce619edfba9841ebde2bd601673e949b9261e7e41c60a1d2R99) `gen.edgecase(rs)` with `gen.edgecases()` increased the amount of generated values by a factor of 100, the default value for the argument iterations. And calling `gen.edgecases()`...

```yaml security: default-group: no-access # Default groups for all the user even unlogged user # Groups definition roles: no-access: - resources: [ ] actions: [ ] reader: - resources: [...

I removed ``` no-access: - resources: [ ] actions: [ ] ``` from `rules`, ``` no-access: - role: no-access ``` from `groups` and also removed `default-group: no-access`. The result was...

It doesn't work with just `default-group: no-access`, but I got it to work with `default-group: no-access` and a no-access group without roles: ``` groups: no-access: [] ``` Thank you for...