22
33declare (strict_types=1 );
44
5+ /*
6+ * This file is part of the SymfonyCasts SassBundle package.
7+ * Copyright (c) SymfonyCasts <https://symfonycasts.com/>
8+ * For the full copyright and license information, please view the LICENSE
9+ * file that was distributed with this source code.
10+ */
11+
512namespace Symfonycasts \SassBundle \Tests ;
613
714use Matthias \SymfonyConfigTest \PhpUnit \ConfigurationTestCaseTrait ;
@@ -22,9 +29,9 @@ public function testSingleSassRootPath(): void
2229 $ this ->assertConfigurationIsValid ([
2330 'symfonycasts_sass ' => [
2431 'root_sass ' => [
25- '%kernel.project_dir%/assets/scss/app.scss '
26- ]
27- ]
32+ '%kernel.project_dir%/assets/scss/app.scss ' ,
33+ ],
34+ ],
2835 ]);
2936 }
3037
@@ -34,9 +41,9 @@ public function testMultipleSassRootPaths(): void
3441 'symfonycasts_sass ' => [
3542 'root_sass ' => [
3643 '%kernel.project_dir%/assets/scss/app.scss ' ,
37- '%kernel.project_dir%/assets/admin/scss/admin.scss '
38- ]
39- ]
44+ '%kernel.project_dir%/assets/admin/scss/admin.scss ' ,
45+ ],
46+ ],
4047 ]);
4148 }
4249
@@ -46,10 +53,10 @@ public function testMultipleSassRootPathsWithSameFilename(): void
4653 'symfonycasts_sass ' => [
4754 'root_sass ' => [
4855 '%kernel.project_dir%/assets/scss/app.scss ' ,
49- '%kernel.project_dir%/assets/admin/scss/app.scss '
50- ]
51- ]
56+ '%kernel.project_dir%/assets/admin/scss/app.scss ' ,
57+ ],
58+ ],
5259 ],
53- 'Invalid configuration for path "symfonycasts_sass.root_sass": The root sass-paths need to end with unique filenames. ' );
60+ 'Invalid configuration for path "symfonycasts_sass.root_sass": The root sass-paths need to end with unique filenames. ' );
5461 }
5562}
0 commit comments