Module goose::prelude

source ·
Expand description

A list of things that typically must be imported to write a Goose load test.

Instead of manually importing everything each time you write a Goose load test, you can simply import this prelude as follows:

use goose::prelude::*;

Re-exports

Macros

  • scenario!("foo") expands to Scenario::new("foo").
  • transaction!(foo) expands to Transaction::new(foo), but also does some boxing to work around a limitation in the compiler.