()
| 539 | |
| 540 | #[test] |
| 541 | fn test_header_has_message() { |
| 542 | let session = make_session(); |
| 543 | let event = make_event(); |
| 544 | let options = make_options(&session, &event); |
| 545 | |
| 546 | let status = empty_status(); |
| 547 | let header = build_turn_header(&options, &status, &no_untracked()); |
| 548 | assert_eq!(header.message, "Fix the authentication bug in login.rs"); |
| 549 | } |
| 550 | |
| 551 | #[test] |
| 552 | fn test_header_has_author() { |
nothing calls this directly
no test coverage detected