mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-11-05 15:26:24 +01:00
test: prettify TEST_DATA over multiple lines
This commit is contained in:
parent
5bf277cf14
commit
77d1236720
|
@ -25,8 +25,13 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_simple_deserialize() {
|
||||
const TEST_DATA: &str =
|
||||
"([Read( (source: File(\"~/example/file.png\"), format: Png) ),Math(Add),Write(( target: File(\"~/example/out.jpg\"), format: Jpeg))])";
|
||||
const TEST_DATA: &str = concat!(
|
||||
"([",
|
||||
"Read( (source: File(\"~/example/file.png\"), format: Png) ),",
|
||||
"Math(Add),",
|
||||
"Write(( target: File(\"~/example/out.jpg\"), format: Jpeg)),",
|
||||
"])",
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
from_ron(TEST_DATA),
|
||||
|
|
Loading…
Reference in a new issue