mautic / app /bundles /LeadBundle /Tests /Controller /LeadCompanySingleControllerTest.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?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);
}
}