Mark deriving test for encoding tags as complete

This commit is contained in:
Ayaz Hafiz 2022-07-12 17:33:29 -04:00
parent b1867a97d2
commit 02526b6dc2
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -563,14 +563,13 @@ fn encode_derived_nested_tag_string() {
_ -> "<bad>"
"#
),
RocStr::from(r#"{"a":{"b":"bar",},}"#),
RocStr::from(r#"{"A":[{"B":["foo","bar",]},]}"#),
RocStr
)
}
#[test]
#[cfg(any(feature = "gen-llvm"))]
#[ignore]
fn encode_derived_nested_record_tag_record() {
assert_evals_to!(
indoc!(
@ -589,7 +588,7 @@ fn encode_derived_nested_record_tag_record() {
_ -> "<bad>"
"#
),
RocStr::from(r#"{"a":{"b":"bar",},}"#),
RocStr::from(r#"{"a":{"B":[{"c":"foo",},]},}"#),
RocStr
)
}