16 lines
633 B
Gherkin
16 lines
633 B
Gherkin
Feature: Routing adapter coverage
|
|
As a developer
|
|
I want routing adapter nodes covered
|
|
So that stream route building is verified
|
|
|
|
Scenario: Map operator creates agent node chain
|
|
Given route operators include a map agent and function
|
|
When I build route nodes from that stream
|
|
Then it creates an agent node and chained edges to end
|
|
And the function node is created with its type
|
|
|
|
Scenario: Map without agent falls back to function node
|
|
Given route operators include a map without agent
|
|
When I build route nodes from that stream
|
|
Then it treats the map as function and terminates chain with end node
|