test/test_code_output.rb in skim-0.9.3 vs test/test_code_output.rb in skim-0.10.0
- old
+ new
@@ -11,35 +11,35 @@
end
def test_render_with_trailing_whitespace
source = %q{
p
- =' @hello_world()
+ => @hello_world()
}
assert_html '<p>Hello World from @env </p>', source
end
def test_render_with_trailing_whitespace_after_tag
source = %q{
-p=' @hello_world()
+p=> @hello_world()
}
assert_html '<p>Hello World from @env</p> ', source
end
def test_no_escape_render_with_trailing_whitespace
source = %q{
p
- ==' @hello_world()
+ ==> @hello_world()
}
assert_html '<p>Hello World from @env </p>', source
end
def test_no_escape_render_with_trailing_whitespace_after_tag
source = %q{
-p==' @hello_world()
+p==> @hello_world()
}
assert_html '<p>Hello World from @env</p> ', source
end