OLD | NEW |
1 #library('DocumentTest'); | 1 #library('DocumentTest'); |
2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/lib/unittest.dart'); |
3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/lib/html_config.dart'); |
4 #import('dart:html'); | 4 #import('dart:html'); |
5 | 5 |
6 main() { | 6 main() { |
7 useHtmlConfiguration(); | 7 useHtmlConfiguration(); |
8 | 8 |
9 test('CreateElement', () { | 9 test('CreateElement', () { |
10 // FIXME: nifty way crashes, do it boring way. | 10 // FIXME: nifty way crashes, do it boring way. |
11 Expect.isTrue(new Element.tag('span') is Element); | 11 Expect.isTrue(new Element.tag('span') is Element); |
12 Expect.isTrue(new Element.tag('div') is DivElement); | 12 Expect.isTrue(new Element.tag('div') is DivElement); |
13 Expect.isTrue(new Element.tag('a') is AnchorElement); | 13 Expect.isTrue(new Element.tag('a') is AnchorElement); |
14 Expect.isTrue(new Element.tag('bad_name') is UnknownElement); | 14 Expect.isTrue(new Element.tag('bad_name') is UnknownElement); |
15 }); | 15 }); |
16 } | 16 } |
OLD | NEW |