tx
Construct a new test transaction builder consisting of the specified list of test operation calls.
Since
0.10.4
Parameters
the list of test operation calls to include in this transaction
Construct a new test transaction builder consisting of the specified test operation calls.
Since
0.10.4
Parameters
the test operation calls to include in this transaction
Construct a new test transaction builder consisting of the specified list of test operation calls.
The test operation calls are given as struct<operation>
values.
For example, calls to the operation:
operation my_op(foo: integer, bar: list<text>) { ... }
may be passed as a struct<my_op>
:
rell.test.tx([
struct<my_op>(foo = 1, bar = ["a", "b"]),
struct<my_op>(foo = 2, bar = ["c", "d"])
]);
Since
0.10.4
Parameters
the list of test operation calls to include in the built transaction
Construct a new test transaction builder consisting of the specified test operation calls.
The test operation calls are given as struct<operation>
values.
For example, calls to the operation:
operation my_op(foo: integer, bar: list<text>) { ... }
may be passed as a struct<my_op>
:
rell.test.tx(
struct<my_op>(foo = 1, bar = ["a", "b"]),
struct<my_op>(foo = 2, bar = ["c", "d"])
);
Since
0.10.4
Parameters
the test operation calls to include in the built transaction