()
| 1135 | |
| 1136 | #[test] |
| 1137 | fn test_cost_display_small() { |
| 1138 | let a = Attestation::builder("s", make_agent()) |
| 1139 | .cost_usd(0.0057) |
| 1140 | .build(); |
| 1141 | assert_eq!(a.cost_display(), "$0.0057"); |
| 1142 | } |
| 1143 | |
| 1144 | #[test] |
| 1145 | fn test_cost_display_normal() { |
nothing calls this directly
no test coverage detected