MCPcopy Create free account
hub / github.com/InfinitiBit/graphbit / test_workflow_builder

Function test_workflow_builder

tests/rust_unit_tests/workflow_tests.rs:403–411  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

401
402#[tokio::test]
403async fn test_workflow_builder() {
404 let workflow = WorkflowBuilder::new("test_workflow")
405 .description("Test workflow")
406 .build()
407 .expect("Failed to build workflow");
408
409 assert_eq!(workflow.name, "test_workflow");
410 assert_eq!(workflow.description, "Test workflow");
411}
412
413#[tokio::test]
414async fn test_workflow_with_llm() {

Callers

nothing calls this directly

Calls 2

buildMethod · 0.45
descriptionMethod · 0.45

Tested by

no test coverage detected