7 lines
133 B
Python
7 lines
133 B
Python
|
from locust import HttpUser, task
|
||
|
|
||
|
|
||
|
class HelloWorldUser(HttpUser):
|
||
|
@task
|
||
|
def hello_world(self):
|
||
|
self.client.get("/")
|