public function PriceTwigExtensionTest::testEmptyPrice in Commerce Core 8.2
Tests passing an empty value.
File
- modules/
price/ tests/ src/ Kernel/ PriceTwigExtensionTest.php, line 75
Class
- PriceTwigExtensionTest
- Tests the price twig filter.
Namespace
Drupal\Tests\commerce_price\KernelCode
public function testEmptyPrice() {
$theme = [
'#theme' => 'commerce_price_test',
];
$this
->render($theme);
$this
->assertText('N/A');
}