summaryrefslogtreecommitdiff
path: root/tests/examplefiles/hash_syntax.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/hash_syntax.rb')
-rw-r--r--tests/examplefiles/hash_syntax.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/examplefiles/hash_syntax.rb b/tests/examplefiles/hash_syntax.rb
new file mode 100644
index 00000000..35b27723
--- /dev/null
+++ b/tests/examplefiles/hash_syntax.rb
@@ -0,0 +1,5 @@
+{ :old_syntax => 'ok' }
+{ 'stings as key' => 'should be ok' }
+{ new_syntax: 'broken until now' }
+{ withoutunderscore: 'should be ok' }
+{ _underscoreinfront: 'might be ok, if I understand the pygments code correct' }