aboutsummaryrefslogtreecommitdiff
path: root/tests/index_wstatus2-connected.phpt
blob: 1df48e12f5da06fd359aea037bd5e88686962143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
test Wrt3g_HtmlParser::index_wstatus2() when we have a connection
--FILE--
<?php
chdir(dirname(__FILE__));
require_once dirname(__FILE__) . '/../Wrt3g/HtmlParser.php';
$p = new Wrt3g_HtmlParser();
var_dump(
    $p->index_wstatus2(
        file_get_contents('index_wstatus2-connected.htm')
    )
);
--EXPECT--
array(1) {
  ["connection"]=>
  string(9) "connected"
}