dust/tests/structs.rs

60 lines
1.3 KiB
Rust
Raw Normal View History

2024-03-19 23:16:33 +00:00
use dust_lang::{abstract_tree::Identifier, *};
#[test]
fn simple_structure() {
assert_eq!(
interpret(
"
struct Foo {
bar : int,
baz : str,
}
Foo {
bar = 42,
baz = 'hiya',
}
"
),
Ok(Some(Value::structure(
Identifier::new("Foo"),
vec![
(Identifier::new("bar"), Value::integer(42)),
(Identifier::new("baz"), Value::string("hiya".to_string())),
]
)))
)
}
2024-03-19 23:33:02 +00:00
#[test]
fn nested_structure() {
assert_eq!(
interpret(
"
struct Bar {
baz : int
}
struct Foo {
bar : Bar
}
Foo {
2024-03-19 23:37:18 +00:00
bar = Bar {
2024-03-19 23:33:02 +00:00
baz = 42
}
}
"
),
Ok(Some(Value::structure(
Identifier::new("Foo"),
2024-03-19 23:37:18 +00:00
vec![(
Identifier::new("bar"),
Value::structure(
Identifier::new("Bar"),
vec![(Identifier::new("baz"), Value::integer(42))]
)
),]
2024-03-19 23:33:02 +00:00
)))
)
}