From ba72aa2d13dae3e8171820107276306e9225d855 Mon Sep 17 00:00:00 2001 From: Fran Moreno Date: Fri, 4 Oct 2019 19:45:39 +0200 Subject: [PATCH] Add missing fixed loader service --- Resources/config/imagine.xml | 4 +++ .../Filter/Loader/FixedFilterLoaderTest.php | 31 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 Tests/Functional/Imagine/Filter/Loader/FixedFilterLoaderTest.php diff --git a/Resources/config/imagine.xml b/Resources/config/imagine.xml index e7aa74a54..4c1ee1d60 100644 --- a/Resources/config/imagine.xml +++ b/Resources/config/imagine.xml @@ -263,6 +263,10 @@ + + + + diff --git a/Tests/Functional/Imagine/Filter/Loader/FixedFilterLoaderTest.php b/Tests/Functional/Imagine/Filter/Loader/FixedFilterLoaderTest.php new file mode 100644 index 000000000..0f2237d2a --- /dev/null +++ b/Tests/Functional/Imagine/Filter/Loader/FixedFilterLoaderTest.php @@ -0,0 +1,31 @@ +createClient(); + + $this->assertInstanceOf( + FixedFilterLoader::class, + self::$kernel->getContainer()->get('liip_imagine.filter.loader.fixed') + ); + } +}