1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 08:32:56 +00:00

LiteralTest is incomplete

This commit is contained in:
Jordi Boggiano 2011-07-21 12:16:24 +02:00
parent 825deff09f
commit 2d1f8fbe70

View file

@ -15,10 +15,11 @@ namespace Composer\Test\DependencyResolver;
use Composer\DependencyResolver\Literal; use Composer\DependencyResolver\Literal;
use Composer\Package\MemoryPackage; 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); $literal = new Literal(new MemoryPackage('foo', '1'), true);
$this->markTestIncomplete('Eh?');
} }
} }