1
0
Fork 0

initial: implement get method for static files

This commit is contained in:
Arthur Khachaturov 2024-07-11 00:20:48 +03:00
commit fd57b9ac75
8 changed files with 289 additions and 0 deletions

View file

@ -0,0 +1,5 @@
from locust import HttpUser, task
class RootUser(HttpUser):
@task
def root(self):
self.client.get("/")