(line, ch, msg)
| 22 | } |
| 23 | |
| 24 | function at(line, ch, msg) { |
| 25 | return function(cm) { |
| 26 | eq(cm.listSelections().length, 1); |
| 27 | eqCursorPos(cm.getCursor("head"), Pos(line, ch), msg); |
| 28 | eqCursorPos(cm.getCursor("anchor"), Pos(line, ch), msg); |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | function val(content, msg) { |
| 33 | return function(cm) { eq(cm.getValue(), content, msg); }; |
no test coverage detected