mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-07 05:19:01 +08:00
currently packaging as a nixosModule so should be easy to integrate with nixos generators in the future. Also looking at making a docker image without systemd
8 lines
182 B
Python
8 lines
182 B
Python
from django.test import Client
|
|
|
|
|
|
def test_index(client: Client) -> None:
|
|
resp = client.get("/")
|
|
assert resp.status_code == 200
|
|
assert resp.content == b"Hello from index"
|