aboutsummaryrefslogtreecommitdiff
path: root/test/vim/golf/54698da795f6da00020d85ed
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2024-05-21 19:53:22 -0600
committerRandy Palamar <randy@rnpnr.xyz>2024-05-21 19:53:22 -0600
commitb7074021b7bfb0932b889b9560dd22df31cef818 (patch)
tree0295b18de8fb8ea5289cbda95675687ae06025ff /test/vim/golf/54698da795f6da00020d85ed
parentb7f8018a00be930e3f2b864949aec1f91291309c (diff)
parentefafa3c178268a4149fc3e432bc1174a013c16de (diff)
downloadvis-b7074021b7bfb0932b889b9560dd22df31cef818.tar.gz
vis-b7074021b7bfb0932b889b9560dd22df31cef818.tar.xz
Merge vis-tests into test directory
Going forward all tests should be submitted here directly.
Diffstat (limited to 'test/vim/golf/54698da795f6da00020d85ed')
-rw-r--r--test/vim/golf/54698da795f6da00020d85ed/1.in6
-rw-r--r--test/vim/golf/54698da795f6da00020d85ed/1.ref3
2 files changed, 9 insertions, 0 deletions
diff --git a/test/vim/golf/54698da795f6da00020d85ed/1.in b/test/vim/golf/54698da795f6da00020d85ed/1.in
new file mode 100644
index 0000000..1fc4f34
--- /dev/null
+++ b/test/vim/golf/54698da795f6da00020d85ed/1.in
@@ -0,0 +1,6 @@
+enum PlaybackRequestType {
+ case Next
+ case Previous
+ case Play
+ case Stop
+}
diff --git a/test/vim/golf/54698da795f6da00020d85ed/1.ref b/test/vim/golf/54698da795f6da00020d85ed/1.ref
new file mode 100644
index 0000000..9e8f420
--- /dev/null
+++ b/test/vim/golf/54698da795f6da00020d85ed/1.ref
@@ -0,0 +1,3 @@
+enum PlaybackRequestType {
+ case Next, Previous, Play, Stop
+}