]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/ImportBundle/Tests/Import/ImportCompilerPassTest.php
Jump to Symfony 3.1
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Tests / Import / ImportCompilerPassTest.php
diff --git a/src/Wallabag/ImportBundle/Tests/Import/ImportCompilerPassTest.php b/src/Wallabag/ImportBundle/Tests/Import/ImportCompilerPassTest.php
deleted file mode 100644 (file)
index b22fcfb..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-namespace Wallabag\ImportBundle\Tests\Import;
-
-use Symfony\Component\DependencyInjection\ContainerBuilder;
-use Wallabag\ImportBundle\Import\ImportCompilerPass;
-
-class ImportCompilerPassTest extends \PHPUnit_Framework_TestCase
-{
-    public function testProcessNoDefinition()
-    {
-        $container = new ContainerBuilder();
-        $res = $this->process($container);
-
-        $this->assertNull($res);
-    }
-
-    public function testProcess()
-    {
-        $container = new ContainerBuilder();
-        $container
-            ->register('wallabag_import.chain')
-            ->setPublic(false)
-        ;
-
-        $container
-            ->register('foo')
-            ->addTag('wallabag_import.import', ['alias' => 'pocket'])
-        ;
-
-        $this->process($container);
-
-        $this->assertTrue($container->hasDefinition('wallabag_import.chain'));
-
-        $definition = $container->getDefinition('wallabag_import.chain');
-        $this->assertTrue($definition->hasMethodCall('addImport'));
-
-        $calls = $definition->getMethodCalls();
-        $this->assertEquals('pocket', $calls[0][1][1]);
-    }
-
-    protected function process(ContainerBuilder $container)
-    {
-        $repeatedPass = new ImportCompilerPass();
-        $repeatedPass->process($container);
-    }
-}