()
| 800 | |
| 801 | #[test] |
| 802 | fn test_tuple_struct() { |
| 803 | #[derive(Serialize)] |
| 804 | struct TupleStruct(String, usize); |
| 805 | |
| 806 | test_ser(TupleStruct("foo".to_string(), 5), r#"["foo",5]"#); |
| 807 | } |
| 808 | |
| 809 | #[test] |
| 810 | fn test_tuple() { |
nothing calls this directly
no test coverage detected