1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
describe Hamlit::Engine do
include RenderHelper
describe 'silent script' do
it 'renders nothing' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
HTML
- _ = nil
- _ = 3
- _ = 'foo'
HAML
end
it 'renders silent script' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
5
HTML
- foo = 3
- bar = 2
= foo + bar
HAML
end
it 'renders nested block' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
0
1
2
3
4
HTML
- 2.times do |i|
= i
2
- 3.upto(4).each do |i|
= i
HAML
end
it 'renders if' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
ok
HTML
- if true
ok
HAML
end
it 'renders if-else' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
ok
ok
HTML
- if true
ok
- else
ng
- if false
ng
- else
ok
HAML
end
it 'renders nested if-else' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
<span>
ok
</span>
HTML
%span
- if false
ng
- else
ok
HAML
end
it 'renders empty elsif statement' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
<span>
</span>
HTML
%span
- if false
- elsif false
HAML
end
it 'renders empty else statement' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
<span>
</span>
HTML
%span
- if false
ng
- else
HAML
end
it 'renders empty when statement' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
<span>
</span>
HTML
%span
- case
- when false
HAML
end
it 'accept if inside if-else' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
ok
HTML
- if false
- if true
ng
- else
ok
HAML
end
it 'renders if-elsif' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
ok
ok
HTML
- if false
- elsif true
ok
- if false
- elsif false
- else
ok
HAML
end
it 'renders case-when' do
assert_render(<<-HTML.unindent, <<-'HAML'.unindent)
ok
HTML
- case 'foo'
- when /\Ao/
ng
- when /\Af/
ok
- else
ng
HAML
end
it 'renders case-when with multiple candidates' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
ok
HTML
- case 'a'
- when 'a', 'b'
ok
HAML
end
it 'renders begin-rescue' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
hello
world
HTML
- begin
- raise 'error'
- rescue
hello
- ensure
world
HAML
end
it 'renders rescue with error' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
hello
HTML
- begin
- raise 'error'
- rescue RuntimeError => _e
hello
HAML
end
it 'joins a next line if a current line ends with ","' do
assert_render(<<-HTML.unindent, "- foo = [', \n ']\n= foo")
[", "]
HTML
end
it 'accepts illegal indent in continuing code' do
assert_render(<<-HTML.unindent, <<-HAML.unindent)
<span>
<div>
3
</div>
</span>
HTML
%span
%div
- obj = Object.new; def obj.foo(a, b); a + b; end
- num = obj.foo(1,
2)
= num
HAML
end
it 'renders comment-only nested silent script' do
assert_render('', <<-HAML.unindent)
- if true
- # comment only
HAML
end
end
end
|