php-deb-packager/tests/wdm/debian/PackagerTest.php
2014-12-03 23:24:42 +01:00

18 lines
362 B
PHP

<?php
namespace wdm\debian;
class PackagerTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
$this->object = new Packager();
}
public function testRetrieveTheBuildCommand()
{
$this->object->setOutputPath("/tmp");
$this->assertEquals("dpkg -b /tmp my.deb", $this->object->build("my.deb"));
}
}