()
| 38 | |
| 39 | #[test] |
| 40 | fn test_options_paths() { |
| 41 | let opts = RecordOptions::new().paths(vec!["src/main.rs", "src/lib.rs"]); |
| 42 | assert_eq!(opts.get_paths().len(), 2); |
| 43 | assert_eq!(opts.get_paths()[0], "src/main.rs"); |
| 44 | } |
| 45 | |
| 46 | #[test] |
| 47 | fn test_options_add_path() { |