rhai/tests/comments.rs

15 lines
315 B
Rust
Raw Normal View History

use rhai::{Engine, INT};
2017-11-03 17:58:51 +01:00
#[test]
fn test_comments() {
let 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 multi-line comment, yay! */ x = 5; x")
2019-09-18 12:21:07 +02:00
.is_ok());
2017-11-03 17:58:51 +01:00
}