Skip to content

Commit

Permalink
Debug Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsbrugs committed Apr 16, 2017
1 parent b16b1ad commit e326078
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Hug/Html/HtmlTest.php
Expand Up @@ -29,6 +29,7 @@ function __construct()
$this->html_links = file_get_contents($data . '/hugo.maugey.fr.html');
$this->url_links = 'https://hugo.maugey.fr/developeur-web/Linux?_escaped_fragment_';
}

/* ************************************************* */
/* ************* Html::is_external_link ************ */
/* ************************************************* */
Expand Down Expand Up @@ -249,7 +250,7 @@ public function testCanGetExternalLinks()
{
$test = Html::get_external_links($this->html_links, $this->url_links);
$this->assertInternalType('array', $test);
$this->assertTrue(count($test)===58);
$this->assertTrue(count($test)===3);
}

/* ************************************************* */
Expand All @@ -263,7 +264,7 @@ public function testCanGetInternalLinks()
{
$test = Html::get_internal_links($this->html_links, $this->url_links);
$this->assertInternalType('array', $test);
$this->assertTrue(count($test)===59);
$this->assertTrue(count($test)===52);
}

/* ************************************************* */
Expand Down

0 comments on commit e326078

Please sign in to comment.