()
| 823 | |
| 824 | #[test] |
| 825 | fn test_enum_unit_variant() { |
| 826 | #[derive(Serialize)] |
| 827 | enum E { |
| 828 | Empty, |
| 829 | } |
| 830 | |
| 831 | test_ser(E::Empty, r#""Empty""#); |
| 832 | } |
| 833 | |
| 834 | #[test] |
| 835 | fn test_enum_tuple_variant() { |
nothing calls this directly
no test coverage detected