| Index: tests/html/xmldocument_2_test.dart
|
| diff --git a/tests/html/xmldocument_2_test.dart b/tests/html/xmldocument_2_test.dart
|
| deleted file mode 100644
|
| index 9e52ae378f152043032c1ccb01b3048db8250710..0000000000000000000000000000000000000000
|
| --- a/tests/html/xmldocument_2_test.dart
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -library XmlDocument2Test;
|
| -import '../../pkg/unittest/lib/unittest.dart';
|
| -import '../../pkg/unittest/lib/html_config.dart';
|
| -import 'dart:html';
|
| -
|
| -main() {
|
| - useHtmlConfiguration();
|
| - test('Document.query', () {
|
| - Document doc = new DomParser().parseFromString(
|
| - '''<ResultSet>
|
| - <Row>A</Row>
|
| - <Row>B</Row>
|
| - <Row>C</Row>
|
| - </ResultSet>''','text/xml');
|
| -
|
| - var rs = doc.query('ResultSet');
|
| - expect(rs, isNotNull);
|
| - });
|
| -}
|
|
|