blob: 926df8ec2d7a1aec5d007dda7a4216c126ffcbd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--TEST--
test Wrt3g_HtmlParser::index_wstatus1() when we have a good connection
--FILE--
<?php
chdir(dirname(__FILE__));
require_once dirname(__FILE__) . '/../Wrt3g/HtmlParser.php';
$p = new Wrt3g_HtmlParser();
var_dump(
$p->index_wstatus1(
file_get_contents('index_wstatus1-connected-good.htm')
)
);
--EXPECT--
array(3) {
["type"]=>
string(4) "GPRS"
["network"]=>
string(7) "BASE DE"
["signal strength"]=>
string(4) "good"
}
|