camel-cli 0.35.0

Command-line interface for Apache Camel in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
# Sample camel test document — run with: camel test routes/hello.test.yaml
routeFiles: [hello.yaml]

inputs:
  - to: "direct:start"
    body: "hello"

expects:
  mock:result:
    count: 1
    bodies: ["hello"]
    headers:
      source: "hello"