()
| 134 | |
| 135 | #[test] |
| 136 | fn test_extract_propline_ignores_unrelated_comment() { |
| 137 | let propline = do_extract("#!/usr/bin/env endbasic\nREM regular comment\n").unwrap(); |
| 138 | assert_eq!(PropLine::default(), propline); |
| 139 | } |
| 140 | |
| 141 | #[test] |
| 142 | fn test_extract_propline_errors_on_bad_prefix() { |
nothing calls this directly
no test coverage detected