Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Magento2/Tests/Less/PropertiesLineBreakUnitTest.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// /**
// * Copyright © Magento, Inc. All rights reserved.
// * See COPYING.txt for license details.
// */

.my{
some: 'stuff'; anything: 'else';
}

.foo {
anything: 'else';
}
27 changes: 27 additions & 0 deletions Magento2/Tests/Less/PropertiesLineBreakUnitTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* Copyright © Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento2\Tests\Less;

class PropertiesLineBreakUnitTest extends AbstractLessSniffUnitTestCase
{
/**
* @inheritdoc
*/
public function getErrorList()
{
return [
7 => 1,
];
}

/**
* @inheritdoc
*/
public function getWarningList()
{
return [];
}
}