rhai/tests/comments.rs

15 lines
311 B
Rust
Raw Normal View History

use rhai::Engine;
2017-11-03 17:58:51 +01:00
#[test]
fn test_comments() {
2019-09-18 12:21:07 +02:00
let mut engine = Engine::new();
2017-11-03 17:58:51 +01:00
2019-09-18 12:21:07 +02:00
assert!(engine
.eval::<i64>("let x = 5; x // I am a single line comment, yay!")
.is_ok());
2017-11-03 17:58:51 +01:00
2019-09-18 12:21:07 +02:00
assert!(engine
.eval::<i64>("let /* I am a multiline comment, yay! */ x = 5; x")
.is_ok());
2017-11-03 17:58:51 +01:00
}