We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae63ee3 commit b92a3a1Copy full SHA for b92a3a1
test/format-table-test.el
@@ -160,6 +160,14 @@
160
(alist-get 'ms format-table-format-alist))))
161
(should (equal expected actual))))
162
163
+(ert-deftest format-table-split-row-should-not-choke-on-shorter-than-expected-string ()
164
+ (let ((expected '("" "" "" ""))
165
+ (actual (format-table-split-row
166
+ ""
167
+ '(13 12 21 10)
168
+ (alist-get 'ms format-table-format-alist))))
169
+ (should (equal expected actual))))
170
+
171
;;;;;;;;;;format-table-render-row-count;;;;;;;;;;;
172
173
(ert-deftest format-table-render-row-count-should-render-for-org ()
0 commit comments