diff options
author | Christian Schneider | 2009-08-20 13:00:12 +0000 |
---|---|---|
committer | Christian Schneider | 2009-08-20 13:00:12 +0000 |
commit | cae02168e1de4c2a5022660fe90d93fb29438523 (patch) | |
tree | 9f2520800c915b1844dd076066fb25ae5b57332c /tests | |
parent | 9f92541c0dd856f8ffe6e956ebe76bff33eade0f (diff) | |
download | itools-cae02168e1de4c2a5022660fe90d93fb29438523.tar.gz itools-cae02168e1de4c2a5022660fe90d93fb29438523.tar.bz2 itools-cae02168e1de4c2a5022660fe90d93fb29438523.zip |
Fix some test names
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it_html.t | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/it_html.t b/tests/it_html.t index 8a8aed6..592fffe 100755 --- a/tests/it_html.t +++ b/tests/it_html.t @@ -15,13 +15,13 @@ is( is( div(), "<div></div>\n", - "empty script tag" + "empty div tag" ); is( - img(array('src' => "foo.png", 'alt' => "")), - '<img src="foo.png" alt="">', - "empty link tag" + img(array('src' => "foo.png", 'alt' => "ALT")), + '<img src="foo.png" alt="ALT">', + "img tag with attributes" ); is( @@ -45,7 +45,7 @@ is( is( it::replace(array('\n+\s*' => ""), select(array('name' => "gna"), array("1" => "foo", "2" => 'bar', '1,2' => "qux"), '1,2')), '<select name="gna"><option value="1">foo</option><option value="2">bar</option><option value="1,2" selected>qux</option></select>', - "link tag without multiselect" + "select tag without multiselect" ); # XML generation |