Skip to content

Commit

Permalink
test B A in concat test
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Nov 20, 2023
1 parent 8361f47 commit fa9dbd7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scopegraphs/tests/test_regex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ fn test_concat() {
compile_regex!(type Machine<Alphabet> = A B);

assert!(Machine::new().accepts([A, B]));
assert!(!Machine::new().accepts([B, A]));
assert!(!Machine::new().accepts([]));
assert!(!Machine::new().accepts([A]));
assert!(!Machine::new().accepts([A, B, C]));
Expand Down

0 comments on commit fa9dbd7

Please sign in to comment.