()
| 603 | |
| 604 | #[test] |
| 605 | fn test_eq() { |
| 606 | let opts1 = WorkflowOptions::new().with_prefix("src/"); |
| 607 | let opts2 = WorkflowOptions::new().with_prefix("src/"); |
| 608 | let opts3 = WorkflowOptions::new().with_prefix("tests/"); |
| 609 | |
| 610 | assert_eq!(opts1, opts2); |
| 611 | assert_ne!(opts1, opts3); |
| 612 | } |
| 613 | } |
nothing calls this directly
no test coverage detected