summaryrefslogtreecommitdiff
path: root/test/asset
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2026-05-23 21:45:02 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2026-05-24 17:47:37 +0200
commitbbf1fd0846fa51f74ef01399ab005d4d847becce (patch)
tree22d0afc8420ca28d0b13a82feb41e81753acf9e0 /test/asset
parent858403fc3ea0888ea748cb23b04fcefe1d21c117 (diff)
Refactor test filtering to its own function and typeHEADmaster
Diffstat (limited to 'test/asset')
-rw-r--r--test/asset/run/tags.et38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/asset/run/tags.et b/test/asset/run/tags.et
new file mode 100644
index 0000000..b1433fa
--- /dev/null
+++ b/test/asset/run/tags.et
@@ -0,0 +1,38 @@
+export tag A
+export tag B
+export tag C
+
+test T1:
+ guard True
+
+test T2:
+ guard True
+
+test A1:
+ tag: A
+ guard True
+
+test A2:
+ tag: A
+ guard True
+
+test B1:
+ tag: B
+ guard True
+
+test B2:
+ tag: B
+ guard True
+
+test C1:
+ tag: C
+ guard True
+
+test C2:
+ tag: C
+ guard True
+
+test BC:
+ tag: B
+ tag: C
+ guard True