nitunit: update tests
authorAlexandre Terrasa <alexandre@moz-code.org>
Mon, 11 May 2015 17:42:58 +0000 (13:42 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Wed, 10 Jun 2015 22:22:35 +0000 (18:22 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

tests/test_doc2.nit
tests/test_nitunit2.nit

index 70e266c..017af92 100644 (file)
@@ -19,28 +19,28 @@ fun foo1 do end
 
 # Test code
 #
-# ~~~~
+# ~~~
 # assert true # tested
-# ~~~~
+# ~~~
 fun foo2 do end
 
 # Test code
 #
-# ~~~~nit
+# ~~~nit
 # assert true # tested
-# ~~~~
+# ~~~
 fun foo3 do end
 
 # Test code
 #
-# ~~~~raw
+# ~~~raw
 # assert false # not tested (and not highlighted)
-# ~~~~
+# ~~~
 fun foo4 do end
 
 # Test code
 #
-# ~~~~nitish
+# ~~~nitish
 # assert false # not tested (but highlighted)
-# ~~~~
+# ~~~
 fun foo5 do end
index 899ff94..f58d87c 100644 (file)
@@ -25,19 +25,19 @@ fun foo1 do end
 
 # a block unit
 #
-#    if true then
+#     if true then
 #
-#        assert true
+#         assert true
 #
-#    end
+#     end
 fun bar2 do end
 
 # a context continuation
 #
-#    var a = 1
-#    assert a == 1
+#     var a = 1
+#     assert a == 1
 #
 # bla bla
 #
-#    assert a == 1
+#     assert a == 1
 fun foo3 do end