'spacer', 'styles' => [ 'block' => [ 'backgroundColor' => 'transparent', 'height' => '13px', ], ], ]; public function testItRendersCorrectly() { $output = (new Spacer)->render($this->block); $expectedResult = ' '; expect($output)->equals($expectedResult); } public function testsItRendersWithBackground() { $this->block['styles']['block']['backgroundColor'] = "#ffffff"; $output = (new Spacer)->render($this->block); $expectedResult = ' '; expect($output)->equals($expectedResult); } }