Retab & spacing

This commit is contained in:
kikito 2016-04-10 13:49:47 +02:00
parent f8da52ca3d
commit 1ca5576b59
2 changed files with 12 additions and 12 deletions

View File

@ -27,15 +27,15 @@ describe( 'inspect', function()
end) end)
it('escapes newlines properly', function() it('escapes newlines properly', function()
assert.equals('"I have \\n new \\n lines"', inspect('I have \n new \n lines')) assert.equals('"I have \\n new \\n lines"', inspect('I have \n new \n lines'))
end) end)
it('escapes tabs properly', function() it('escapes tabs properly', function()
assert.equals('"I have \\t a tab character"', inspect('I have \t a tab character')) assert.equals('"I have \\t a tab character"', inspect('I have \t a tab character'))
end) end)
it('escapes backspaces properly', function() it('escapes backspaces properly', function()
assert.equals('"I have \\b a back space"', inspect('I have \b a back space')) assert.equals('"I have \\b a back space"', inspect('I have \b a back space'))
end) end)
it('escapes zeroes and other control characters properly', function() it('escapes zeroes and other control characters properly', function()
@ -44,9 +44,9 @@ describe( 'inspect', function()
end) end)
it('backslashes its backslashes', function() it('backslashes its backslashes', function()
assert.equals('"I have \\\\ a backslash"', inspect('I have \\ a backslash')) assert.equals('"I have \\\\ a backslash"', inspect('I have \\ a backslash'))
assert.equals('"I have \\\\\\\\ two backslashes"', inspect('I have \\\\ two backslashes')) assert.equals('"I have \\\\\\\\ two backslashes"', inspect('I have \\\\ two backslashes'))
assert.equals('"I have \\\\\\n a backslash followed by a newline"', inspect('I have \\\n a backslash followed by a newline')) assert.equals('"I have \\\\\\n a backslash followed by a newline"', inspect('I have \\\n a backslash followed by a newline'))
end) end)
end) end)