diff options
| author | Matthew Hall <hallmatthew314@gmail.com> | 2024-03-23 00:58:37 +1300 |
|---|---|---|
| committer | Matthew Hall <hallmatthew314@gmail.com> | 2024-03-23 00:58:37 +1300 |
| commit | 8d1d9db24338e86d44d2d5f00b5b95d288036cae (patch) | |
| tree | f3361e17137286401af154f2231b33c391924146 /test_data | |
Initial
Diffstat (limited to 'test_data')
| -rw-r--r-- | test_data/a.txt | 9 | ||||
| -rw-r--r-- | test_data/b.txt | 5 | ||||
| -rw-r--r-- | test_data/c.txt | 5 | ||||
| -rw-r--r-- | test_data/sentences.txt | 14 |
4 files changed, 33 insertions, 0 deletions
diff --git a/test_data/a.txt b/test_data/a.txt new file mode 100644 index 0000000..a9c9381 --- /dev/null +++ b/test_data/a.txt @@ -0,0 +1,9 @@ +a_one +a_two +a_three +a_four with spaces +a_five + + + +a_six lots of line breaks above this one diff --git a/test_data/b.txt b/test_data/b.txt new file mode 100644 index 0000000..b6bb927 --- /dev/null +++ b/test_data/b.txt @@ -0,0 +1,5 @@ +b_one +b_two +b_three +b_four with spaces +b_five diff --git a/test_data/c.txt b/test_data/c.txt new file mode 100644 index 0000000..76cc922 --- /dev/null +++ b/test_data/c.txt @@ -0,0 +1,5 @@ +c_one +c_two +c_three +c_four with spaces +c_five diff --git a/test_data/sentences.txt b/test_data/sentences.txt new file mode 100644 index 0000000..1538972 --- /dev/null +++ b/test_data/sentences.txt @@ -0,0 +1,14 @@ +This sentence tests type a: %%a%%. +This sentence tests type b: %%b%%. +This sentence tests type c: %%c%%. +This sentence uses types a, b, and c in reverse order: %%c%% %%b%% %%a%%. +This sentence uses a variable: %%?x%% +This sentence uses one variable once, then another twice: %%?x%% %%?y%% %%?y%% +This sentence uses four different variables: %%?w%% %%?x%% %%?y%% %%?z%% +This sentence uses four identical variables: %%?x%% %%?x%% %%?x%% %%?x%% +This sentence uses type c, then a variable: %%c%% %%?x%% +This sentence uses type c, then a variable named 'c': %%c%% %%?c%% +This sentence uses 10 identical variables: %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% %%?x%% +This sentence uses either type a or b: %%a|b%% +This sentence uses a variable, then either type a or the same variable: %%?x%% %%a|?x%% +malformed sentence %%a||d%% |
