Test Workflow Builder
()
| 107 | #[allow(dead_code)] |
| 108 | // Test Workflow Builder |
| 109 | pub(super) fn create_test_workflow() -> graphbit_core::workflow::Workflow { |
| 110 | WorkflowBuilder::new("test_workflow") |
| 111 | .description("A test workflow") |
| 112 | .metadata("test_key".to_string(), serde_json::json!("test_value")) |
| 113 | .build() |
| 114 | .unwrap() |
| 115 | } |
| 116 | |
| 117 | #[allow(dead_code)] |
| 118 | // Test Node Creation |
nothing calls this directly
no test coverage detected