From f00febe5d3114ff9d4892eebffe64558be48e32c Mon Sep 17 00:00:00 2001 From: Chris Morrell Date: Wed, 19 Jan 2022 10:34:23 -0500 Subject: [PATCH] Remove unnecessary test --- tests/DatabaseCasterTest.php | 53 ------------------------------------ 1 file changed, 53 deletions(-) diff --git a/tests/DatabaseCasterTest.php b/tests/DatabaseCasterTest.php index 9a5c80d..3f9c716 100644 --- a/tests/DatabaseCasterTest.php +++ b/tests/DatabaseCasterTest.php @@ -88,59 +88,6 @@ public function test_it_dumps_basic_query_builders(): void $this->assertDumpMatchesFormat($expected, $builder); } - public function test_it_formats_very_long_sql(): void - { - $builder = DB::table('users') - ->select(['one', 'two', 'three', 'four', 'five', 'six', 'seven']) - ->where('one', 'this is a long string') - ->orWhere('two', 'this is a long string') - ->orWhere('three', 'this is a long string') - ->orWhere('four', 'this is a long string') - ->orWhere('five', 'this is a long string') - ->orWhere('six', 'this is a long string') - ->orWhere('seven', 'this is a long string') - ->limit(10) - ->orderBy('three'); - - $expected = <<assertDumpMatchesFormat($expected, $builder); - } - public function test_it_dumps_eloquent_query_builders(): void { $builder = User::query()