diff options
| author | Alex Leferry 2 <alexherbo2@gmail.com> | 2014-06-30 12:22:50 +0200 |
|---|---|---|
| committer | Alex Leferry 2 <alexherbo2@gmail.com> | 2014-06-30 12:22:50 +0200 |
| commit | d20d43bf3622fc4bb416cf2ca95d5cf0c4c88fcf (patch) | |
| tree | 42173f19891a452bdf10b8b7769a457068ecbb7a /test/unit/inner | |
| parent | 7aa78d726a54fa57a8dc5ed973ab0b30eeba6bf3 (diff) | |
add testing framework
Diffstat (limited to 'test/unit/inner')
36 files changed, 60 insertions, 0 deletions
diff --git a/test/unit/inner/WORD/cmd b/test/unit/inner/WORD/cmd new file mode 100644 index 00000000..12d2f19a --- /dev/null +++ b/test/unit/inner/WORD/cmd @@ -0,0 +1 @@ +<a-i>W diff --git a/test/unit/inner/WORD/in b/test/unit/inner/WORD/in new file mode 100644 index 00000000..434f77db --- /dev/null +++ b/test/unit/inner/WORD/in @@ -0,0 +1 @@ +foo %(b)ar-baz qux diff --git a/test/unit/inner/WORD/selections b/test/unit/inner/WORD/selections new file mode 100644 index 00000000..8965d2e8 --- /dev/null +++ b/test/unit/inner/WORD/selections @@ -0,0 +1 @@ +bar-baz diff --git a/test/unit/inner/angle/cmd b/test/unit/inner/angle/cmd new file mode 100644 index 00000000..21bc39d0 --- /dev/null +++ b/test/unit/inner/angle/cmd @@ -0,0 +1 @@ +<a-i>a diff --git a/test/unit/inner/angle/in b/test/unit/inner/angle/in new file mode 100644 index 00000000..8dea61dd --- /dev/null +++ b/test/unit/inner/angle/in @@ -0,0 +1 @@ +#include <%(f)oo> diff --git a/test/unit/inner/angle/selections b/test/unit/inner/angle/selections new file mode 100644 index 00000000..257cc564 --- /dev/null +++ b/test/unit/inner/angle/selections @@ -0,0 +1 @@ +foo diff --git a/test/unit/inner/braces/cmd b/test/unit/inner/braces/cmd new file mode 100644 index 00000000..4effbcef --- /dev/null +++ b/test/unit/inner/braces/cmd @@ -0,0 +1 @@ +<a-a>B diff --git a/test/unit/inner/braces/in b/test/unit/inner/braces/in new file mode 100644 index 00000000..b62df918 --- /dev/null +++ b/test/unit/inner/braces/in @@ -0,0 +1,3 @@ +{ + "%(foo)": "bar" +} diff --git a/test/unit/inner/braces/selections b/test/unit/inner/braces/selections new file mode 100644 index 00000000..953b7f6e --- /dev/null +++ b/test/unit/inner/braces/selections @@ -0,0 +1,2 @@ + + "foo": "bar" diff --git a/test/unit/inner/brackets/cmd b/test/unit/inner/brackets/cmd new file mode 100644 index 00000000..d567e3bd --- /dev/null +++ b/test/unit/inner/brackets/cmd @@ -0,0 +1 @@ +<a-a>r diff --git a/test/unit/inner/brackets/in b/test/unit/inner/brackets/in new file mode 100644 index 00000000..286c5fcb --- /dev/null +++ b/test/unit/inner/brackets/in @@ -0,0 +1,3 @@ +[ + "%(foo)" +] diff --git a/test/unit/inner/brackets/selections b/test/unit/inner/brackets/selections new file mode 100644 index 00000000..cf0461e8 --- /dev/null +++ b/test/unit/inner/brackets/selections @@ -0,0 +1,2 @@ + + "foo" diff --git a/test/unit/inner/double_quote/cmd b/test/unit/inner/double_quote/cmd new file mode 100644 index 00000000..1f62c901 --- /dev/null +++ b/test/unit/inner/double_quote/cmd @@ -0,0 +1 @@ +<a-i>Q diff --git a/test/unit/inner/double_quote/in b/test/unit/inner/double_quote/in new file mode 100644 index 00000000..78428f5e --- /dev/null +++ b/test/unit/inner/double_quote/in @@ -0,0 +1 @@ +foo("%(b)ar") diff --git a/test/unit/inner/double_quote/selections b/test/unit/inner/double_quote/selections new file mode 100644 index 00000000..5716ca59 --- /dev/null +++ b/test/unit/inner/double_quote/selections @@ -0,0 +1 @@ +bar diff --git a/test/unit/inner/grave_quote/cmd b/test/unit/inner/grave_quote/cmd new file mode 100644 index 00000000..1234f5e0 --- /dev/null +++ b/test/unit/inner/grave_quote/cmd @@ -0,0 +1 @@ +<a-i>g diff --git a/test/unit/inner/grave_quote/in b/test/unit/inner/grave_quote/in new file mode 100644 index 00000000..6f02c52a --- /dev/null +++ b/test/unit/inner/grave_quote/in @@ -0,0 +1 @@ +echo `%(f)oo` diff --git a/test/unit/inner/grave_quote/selections b/test/unit/inner/grave_quote/selections new file mode 100644 index 00000000..257cc564 --- /dev/null +++ b/test/unit/inner/grave_quote/selections @@ -0,0 +1 @@ +foo diff --git a/test/unit/inner/indent/cmd b/test/unit/inner/indent/cmd new file mode 100644 index 00000000..c304fd98 --- /dev/null +++ b/test/unit/inner/indent/cmd @@ -0,0 +1 @@ +<a-i>i diff --git a/test/unit/inner/indent/in b/test/unit/inner/indent/in new file mode 100644 index 00000000..3d074b01 --- /dev/null +++ b/test/unit/inner/indent/in @@ -0,0 +1,3 @@ + + foo(%(b)ar) + diff --git a/test/unit/inner/indent/selections b/test/unit/inner/indent/selections new file mode 100644 index 00000000..ffb60196 --- /dev/null +++ b/test/unit/inner/indent/selections @@ -0,0 +1,2 @@ + foo(bar) + diff --git a/test/unit/inner/paragraph/cmd b/test/unit/inner/paragraph/cmd new file mode 100644 index 00000000..0e41c9b5 --- /dev/null +++ b/test/unit/inner/paragraph/cmd @@ -0,0 +1 @@ +<a-i>p diff --git a/test/unit/inner/paragraph/in b/test/unit/inner/paragraph/in new file mode 100644 index 00000000..0da6451e --- /dev/null +++ b/test/unit/inner/paragraph/in @@ -0,0 +1,8 @@ +a +b + +%(c) +d + +e +f diff --git a/test/unit/inner/paragraph/selections b/test/unit/inner/paragraph/selections new file mode 100644 index 00000000..4cdfd2ac --- /dev/null +++ b/test/unit/inner/paragraph/selections @@ -0,0 +1,3 @@ +c +d + diff --git a/test/unit/inner/parenthesis/cmd b/test/unit/inner/parenthesis/cmd new file mode 100644 index 00000000..4509b477 --- /dev/null +++ b/test/unit/inner/parenthesis/cmd @@ -0,0 +1 @@ +<a-i>b diff --git a/test/unit/inner/parenthesis/in b/test/unit/inner/parenthesis/in new file mode 100644 index 00000000..3bea1f71 --- /dev/null +++ b/test/unit/inner/parenthesis/in @@ -0,0 +1 @@ +foo(%(b)ar) diff --git a/test/unit/inner/parenthesis/selections b/test/unit/inner/parenthesis/selections new file mode 100644 index 00000000..5716ca59 --- /dev/null +++ b/test/unit/inner/parenthesis/selections @@ -0,0 +1 @@ +bar diff --git a/test/unit/inner/sentence/cmd b/test/unit/inner/sentence/cmd new file mode 100644 index 00000000..19bf3855 --- /dev/null +++ b/test/unit/inner/sentence/cmd @@ -0,0 +1 @@ +<a-i>s diff --git a/test/unit/inner/sentence/in b/test/unit/inner/sentence/in new file mode 100644 index 00000000..006cd705 --- /dev/null +++ b/test/unit/inner/sentence/in @@ -0,0 +1,6 @@ +%(Lorem ipsum) dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, +sunt in culpa qui officia deserunt mollit anim id est laborum. diff --git a/test/unit/inner/sentence/selections b/test/unit/inner/sentence/selections new file mode 100644 index 00000000..dd3c7d70 --- /dev/null +++ b/test/unit/inner/sentence/selections @@ -0,0 +1,2 @@ +Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. diff --git a/test/unit/inner/single_quote/cmd b/test/unit/inner/single_quote/cmd new file mode 100644 index 00000000..2c023626 --- /dev/null +++ b/test/unit/inner/single_quote/cmd @@ -0,0 +1 @@ +<a-i>q diff --git a/test/unit/inner/single_quote/in b/test/unit/inner/single_quote/in new file mode 100644 index 00000000..ed397c1c --- /dev/null +++ b/test/unit/inner/single_quote/in @@ -0,0 +1 @@ +foo('%(b)ar') diff --git a/test/unit/inner/single_quote/selections b/test/unit/inner/single_quote/selections new file mode 100644 index 00000000..5716ca59 --- /dev/null +++ b/test/unit/inner/single_quote/selections @@ -0,0 +1 @@ +bar diff --git a/test/unit/inner/word/cmd b/test/unit/inner/word/cmd new file mode 100644 index 00000000..377e885f --- /dev/null +++ b/test/unit/inner/word/cmd @@ -0,0 +1 @@ +<a-i>w diff --git a/test/unit/inner/word/in b/test/unit/inner/word/in new file mode 100644 index 00000000..e92570ea --- /dev/null +++ b/test/unit/inner/word/in @@ -0,0 +1 @@ +foo %(b)ar baz diff --git a/test/unit/inner/word/selections b/test/unit/inner/word/selections new file mode 100644 index 00000000..5716ca59 --- /dev/null +++ b/test/unit/inner/word/selections @@ -0,0 +1 @@ +bar |
