mirror of
https://github.com/casey/just.git
synced 2024-11-23 11:04:09 +03:00
8 lines
163 B
Rust
8 lines
163 B
Rust
use crate::common::*;
|
|
|
|
#[test]
|
|
fn parse() {
|
|
let yaml = fs::read_to_string("extras/just.sublime-syntax").unwrap();
|
|
YamlLoader::load_from_str(&yaml).unwrap();
|
|
}
|