rhai/tests/comments.rs

15 lines
318 B
Rust
Raw Normal View History

use rhai::{Engine, INT};
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::<INT>("let x = 5; x // I am a single line comment, yay!")
2019-09-18 12:21:07 +02:00
.is_ok());
2017-11-03 17:58:51 +01:00
2019-09-18 12:21:07 +02:00
assert!(engine
.eval::<INT>("let /* I am a multiline comment, yay! */ x = 5; x")
2019-09-18 12:21:07 +02:00
.is_ok());
2017-11-03 17:58:51 +01:00
}