5 lines
119 B
Python
5 lines
119 B
Python
from locust import HttpUser, task
|
|
class RootUser(HttpUser):
|
|
@task
|
|
def root(self):
|
|
self.client.get("/")
|