summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/ruby/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/ruby/test.js')
-rw-r--r--public/vendor/codemirror/mode/ruby/test.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/public/vendor/codemirror/mode/ruby/test.js b/public/vendor/codemirror/mode/ruby/test.js
deleted file mode 100644
index cade864f..00000000
--- a/public/vendor/codemirror/mode/ruby/test.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// CodeMirror, copyright (c) by Marijn Haverbeke and others
-// Distributed under an MIT license: http://codemirror.net/LICENSE
-
-(function() {
- var mode = CodeMirror.getMode({indentUnit: 2}, "ruby");
- function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
-
- MT("divide_equal_operator",
- "[variable bar] [operator /=] [variable foo]");
-
- MT("divide_equal_operator_no_spacing",
- "[variable foo][operator /=][number 42]");
-
-})();