zombienet_support/
constants.rs1pub const VALID_REGEX: &str = "regex should be valid ";
2pub const BORROWABLE: &str = "must be borrowable as mutable ";
3pub const RELAY_NOT_NONE: &str = "typestate should ensure the relaychain isn't None at this point ";
4pub const SHOULD_COMPILE: &str = "should compile with success ";
5pub const INFAILABLE: &str = "infaillible ";
6pub const NO_ERR_DEF_BUILDER: &str = "should have no errors for default builder ";
7pub const RW_FAILED: &str = "should be able to read/write - failed ";
8pub const DEFAULT_TYPESTATE: &str = "'default' overriding should be ensured by typestate ";
9pub const VALIDATION_CHECK: &str = "validation failed ";
10
11pub const PREFIX_CANT_BE_NONE: &str = "name prefix can't be None if a value exists ";
12
13pub const GRAPH_CONTAINS_NAME: &str =
14 "graph contains node name; we initialize it with all node names";
15pub const GRAPH_CONTAINS_DEP: &str = "graph contains dep_name; we filter out deps not contained in by_name and populate the graph with all nodes";
16pub const INDEGREE_CONTAINS_NAME: &str =
17 "indegree contains node name; we initialize it with all node names";
18pub const QUEUE_NOT_EMPTY: &str = "queue is not empty; we're looping over its length";
19
20pub const THIS_IS_A_BUG: &str =
21 "- this is a bug please report it: https://github.com/paritytech/zombienet-sdk/issues";