()
| 794 | |
| 795 | #[test] |
| 796 | fn test_author_display_without_email() { |
| 797 | let author = fallback_agent_author(&AgentAuthorOptions { |
| 798 | agent_name: "claude-code", |
| 799 | agent_display_name: "Claude Code", |
| 800 | session_id: "sess", |
| 801 | identity_dir: None, |
| 802 | }); |
| 803 | |
| 804 | assert_eq!(author.display_short(), "Claude Code"); |
| 805 | } |
| 806 | |
| 807 | #[test] |
| 808 | fn test_author_display_different_agents() { |
nothing calls this directly
no test coverage detected