From afb6dd2e5ead7f43c4d44d33ec410d3ef2c29b5b Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sat, 15 Oct 2022 23:57:03 +0100 Subject: [PATCH] [4.3] Dropped invalid tests (#544) --- tests/Dotenv/LinesTest.php | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/tests/Dotenv/LinesTest.php b/tests/Dotenv/LinesTest.php index fbbb56ce..b906a546 100644 --- a/tests/Dotenv/LinesTest.php +++ b/tests/Dotenv/LinesTest.php @@ -40,30 +40,4 @@ public function testProcessQuotes() self::assertSame($expected, Lines::process(preg_split("/(\r\n|\n|\r)/", $content))); } - - 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); - } }