Update website

This commit is contained in:
Guilhem Lavaux 2024-11-19 08:02:04 +01:00
parent 4413528994
commit 1d90fbf296
6865 changed files with 1091082 additions and 0 deletions

View file

@ -0,0 +1,46 @@
<?php
declare(strict_types=1);
namespace Doctrine\Tests\RST\BuilderMalformedReference;
use Doctrine\RST\Builder;
use Doctrine\RST\Configuration;
use Doctrine\RST\Kernel;
use Doctrine\Tests\RST\BaseBuilderTest;
class BuilderMalformedReferenceTest extends BaseBuilderTest
{
/** @var Configuration */
private $configuration;
protected function setUp(): void
{
$this->configuration = new Configuration();
$this->configuration->setUseCachedMetas(false);
$this->configuration->abortOnError(false);
$this->configuration->setIgnoreInvalidReferences(true);
$this->builder = new Builder(new Kernel($this->configuration));
}
public function testMalformedReference(): void
{
// test that invalid references can be ignored and no exception gets thrown
$this->builder->build($this->sourceFile(), $this->targetFile());
$contents = $this->getFileContents($this->targetFile('subdir/another.html'));
self::assertStringContainsString('<p>Test link to</p>', $contents);
$contents = $this->getFileContents($this->targetFile('subdir/index.html'));
self::assertStringContainsString('<a id="test_reference"></a>', $contents);
}
protected function getFixturesDirectory(): string
{
return 'BuilderMalformedReference';
}
}

View file

@ -0,0 +1 @@
Index

View file

@ -0,0 +1 @@
Test :doc:`link to <_test_reference>`

View file

@ -0,0 +1,3 @@
Example:
.. _test_reference: