Spaces:
No application file
No application file
File size: 581 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php
namespace Mautic\LeadBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
class LeadCompanyControllerTest extends MauticMysqlTestCase
{
protected function setUp(): void
{
$this->configParams['contact_allow_multiple_companies'] = 0;
parent::setUp();
}
public function testSimpleCompanyFeature(): void
{
$crawler = $this->client->request('GET', 's/contacts/new/');
$multiple = $crawler->filterXPath('//*[@id="lead_companies"]')->attr('multiple');
self::assertNull($multiple);
}
}
|