github.com/jancarloviray/community@v0.41.1-0.20170124221257-33a66c87cf2f/app/public/codemirror/mode/ruby/test.js (about) 1 // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 // Distributed under an MIT license: http://codemirror.net/LICENSE 3 4 (function() { 5 var mode = CodeMirror.getMode({indentUnit: 2}, "ruby"); 6 function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } 7 8 MT("divide_equal_operator", 9 "[variable bar] [operator /=] [variable foo]"); 10 11 MT("divide_equal_operator_no_spacing", 12 "[variable foo][operator /=][number 42]"); 13 14 })();