summary refs log blame commit diff stats
path: root/tests/parser_prop.rs
blob: 8a4cbebfa7451ead7fe588eb546eafd3f562fa3c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                             





                                   
                                                                  

     
// Copyright (C) 2021 Soni L.
// SPDX-License-Identifier: MIT OR Apache-2.0

use proptest::prelude::*;

proptest! {
    #[test]
    fn doesnt_panic(s in "\\PC*") {
        let _ = datafu::PatternBuilder::for_pattern(&s).compile();
    }
}