Don't use old-style backquote in doc/ptexinfmt.el.
[riece] / lisp / test / test-riece-yank.el
1 (require 'riece-yank)
2
3 (luna-define-class test-riece-yank (lunit-test-case))
4
5 (luna-define-method test-riece-yank-strip-space ((case test-riece-yank))
6   (lunit-assert-2
7    case
8    (equal
9     (riece-yank-strip-space "\
10   def a
11     0.times do
12       0.times do
13         p 1 # this line begins with a TAB
14       end
15     end
16   end
17
18 ")
19     "\
20 def a
21   0.times do
22     0.times do
23       p 1 # this line begins with a TAB
24     end
25   end
26 end")))