From f77314f647f5e79c3f66f0fec27a8762535740b7 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sat, 10 Feb 2018 23:29:47 -0500 Subject: [PATCH] increase test coverage --- .../samples/each-block-multiple-children/_config.js | 3 +++ .../samples/each-block-multiple-children/input.html | 10 ++++++++++ .../samples/each-block-multiple-children/warnings.json | 1 + 3 files changed, 14 insertions(+) create mode 100644 test/validator/samples/each-block-multiple-children/_config.js create mode 100644 test/validator/samples/each-block-multiple-children/input.html create mode 100644 test/validator/samples/each-block-multiple-children/warnings.json diff --git a/test/validator/samples/each-block-multiple-children/_config.js b/test/validator/samples/each-block-multiple-children/_config.js new file mode 100644 index 0000000000..e26996239d --- /dev/null +++ b/test/validator/samples/each-block-multiple-children/_config.js @@ -0,0 +1,3 @@ +export default { + dev: true +}; \ No newline at end of file diff --git a/test/validator/samples/each-block-multiple-children/input.html b/test/validator/samples/each-block-multiple-children/input.html new file mode 100644 index 0000000000..9d996a3acf --- /dev/null +++ b/test/validator/samples/each-block-multiple-children/input.html @@ -0,0 +1,10 @@ +{{#each things as thing}} + this only exists... + ...to increase test coverage +{{/each}} + +{{#each things as thing}}{{soDoesThis}}{{/each}} + +{{#each things as thing}} + andThis +{{/each}} \ No newline at end of file diff --git a/test/validator/samples/each-block-multiple-children/warnings.json b/test/validator/samples/each-block-multiple-children/warnings.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/test/validator/samples/each-block-multiple-children/warnings.json @@ -0,0 +1 @@ +[] \ No newline at end of file