Add tests that randomly edit files with disjoint included ranges

This commit is contained in:
Max Brunsfeld 2022-11-14 16:04:37 -08:00
parent efd22e452b
commit 8e3dc7cd7a
5 changed files with 176 additions and 42 deletions

View file

@ -4,7 +4,7 @@ use rand::{
};
const OPERATORS: &[char] = &[
'+', '-', '<', '>', '(', ')', '*', '/', '&', '|', '!', ',', '.',
'+', '-', '<', '>', '(', ')', '*', '/', '&', '|', '!', ',', '.', '%',
];
pub struct Rand(StdRng);