Browse Source

LiteralTest is incomplete

Jordi Boggiano 14 years ago
parent
commit
2d1f8fbe70
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tests/Composer/Test/DependencyResolver/LiteralTest.php

+ 3 - 2
tests/Composer/Test/DependencyResolver/LiteralTest.php

@@ -15,10 +15,11 @@ namespace Composer\Test\DependencyResolver;
 use Composer\DependencyResolver\Literal;
 use Composer\Package\MemoryPackage;
 
-class SolvableTest extends \PHPUnit_Framework_TestCase
+class LiteralTest extends \PHPUnit_Framework_TestCase
 {
-    public function testSolvable()
+    public function testLiteral()
     {
         $literal = new Literal(new MemoryPackage('foo', '1'), true);
+        $this->markTestIncomplete('Eh?');
     }
 }