Skip to content

Commit

Permalink
Merge branch '4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 15, 2022
2 parents b674e23 + afb6dd2 commit a3e69ca
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions tests/Dotenv/Parser/LinesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,30 +49,4 @@ public function testProcessQuotes()

self::assertSame($expected, Lines::process($result->success()->get()));
}

public function testProcessClosingSlash()
{
$lines = [
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
];

$expected = [
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
];

self::assertSame($expected, $lines);
}

public function testProcessBadQuotes()
{
$lines = [
"TEST=\"erert\nTEST='erert\n",
];

$expected = [
"TEST=\"erert\nTEST='erert\n",
];

self::assertSame($expected, $lines);
}
}

0 comments on commit a3e69ca

Please sign in to comment.