1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00
Radicale/radicale/tests
Unrud 9c622b57d5 Allow callable in configuration for plugin.type
Example:

```python3
\# Load default configuration
my_config = config.load()

\# Pass a class directly
my_config.update({"auth": {"type": MyAuth}})

\# Pass an object directly
my_rights = MyRights()
my_config.update({"rights": {"type": lambda config: my_rights}})

app = Application(my_config)
````
2020-04-09 22:01:35 +02:00
..
custom Test default sync implementation 2020-01-15 01:27:41 +01:00
static Test internal server 2018-09-04 03:33:45 +02:00
__init__.py Remove unused code 2020-02-20 10:41:33 +01:00
helpers.py Mark internal configuration options and sections with underscore 2020-02-19 09:50:27 +01:00
test_auth.py Move internal options to other sections 2020-02-19 09:50:36 +01:00
test_base.py Allow callable in configuration for plugin.type 2020-04-09 22:01:35 +02:00
test_config.py Move internal options to other sections 2020-02-19 09:50:36 +01:00
test_rights.py Move internal options to other sections 2020-02-19 09:50:36 +01:00
test_server.py Fix test on MacOS (3) 2020-02-20 11:27:26 +01:00
test_web.py Move internal options to other sections 2020-02-19 09:50:36 +01:00