Chromium Code Reviews| Index: lib/src/prism/tests/languages/gherkin/tag_feature.test |
| diff --git a/lib/src/prism/tests/languages/gherkin/tag_feature.test b/lib/src/prism/tests/languages/gherkin/tag_feature.test |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..51026ea1b1d1106022e8658484c889b67df470db |
| --- /dev/null |
| +++ b/lib/src/prism/tests/languages/gherkin/tag_feature.test |
| @@ -0,0 +1,17 @@ |
| +@important |
| +@billing @bicker @annoy |
| + @foo |
| + |
| +---------------------------------------------------- |
| + |
| +[ |
| + ["tag", "@important"], |
| + ["tag", "@billing"], |
| + ["tag", "@bicker"], |
| + ["tag", "@annoy"], |
| + ["tag", "@foo"] |
| +] |
| + |
| +---------------------------------------------------- |
| + |
| +Checks for tags. |