We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b8c7a commit de64532Copy full SHA for de64532
tests/MagentoHackathon/Composer/Magento/ModmanParserTest.php
@@ -61,6 +61,9 @@ public function testSetSetModuleDirWithTrailingBackslash()
61
*/
62
public function testSetGetFile()
63
{
64
+ if ( PHP_MAJOR_VERSION === 5 && PHP_MINOR_VERSION === 6 ) {
65
+ $this->markTestSkipped( 'Mock is Not compatible to PHP 5.6' );
66
+ }
67
$file = $this->getMockBuilder('\\SplFileObject')->setConstructorArgs(array(__FILE__))->getMock();
68
$this->object->setFile($file);
69
$this->assertSame($file, $this->object->getFile());
0 commit comments