Skip to content

Commit f724e0c

Browse files
committed
include identation markup to the tests
1 parent 37bc839 commit f724e0c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/test_text.odt

103 Bytes
Binary file not shown.

test/test_text.rb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ def initialize(_name, _text)
1111
end
1212

1313
items = []
14-
5.times do
14+
4.times do
1515

1616
text = <<-HTML
1717
<p>#{Faker::Lorem.sentence} <em>#{Faker::Lorem.sentence}</em> #{Faker::Lorem.sentence}</p>
1818
<p>#{Faker::Lorem.sentence} <strong>#{Faker::Lorem.paragraph}</strong> #{Faker::Lorem.paragraph}</p>
1919
<p>#{Faker::Lorem.paragraph}</p>
20+
<blockquote>
21+
<p>#{Faker::Lorem.paragraph(10)}</p>
22+
<p>#{Faker::Lorem.paragraph}</p>
23+
</blockquote>
24+
<p style="margin: 150px">#{Faker::Lorem.paragraph(15)}</p>
25+
<p>#{Faker::Lorem.paragraph}</p>
2026
HTML
2127

2228
items << Item.new(Faker::Name.name, text)

0 commit comments

Comments
 (0)