2009-01-27 14:34:14 -05:00
|
|
|
! Copyright (C) 2005, 2009 Daniel Ehrenberg
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-09-13 21:14:46 -04:00
|
|
|
USING: xml xml.traversal tools.test xml.data sequences arrays ;
|
2009-02-05 22:17:03 -05:00
|
|
|
IN: xml.traversal.tests
|
2008-06-27 02:30:23 -04:00
|
|
|
|
|
|
|
[ "bar" ] [ "<foo>bar</foo>" string>xml children>string ] unit-test
|
|
|
|
|
|
|
|
[ "" ] [ "<foo></foo>" string>xml children>string ] unit-test
|
|
|
|
|
|
|
|
[ "" ] [ "<foo/>" string>xml children>string ] unit-test
|
2009-01-27 14:34:14 -05:00
|
|
|
|
2009-01-31 22:01:55 -05:00
|
|
|
[ "blah" ] [ "<foo attr='blah'/>" string>xml-chunk "foo" deep-tag-named "attr" attr ] unit-test
|
|
|
|
|
|
|
|
[ { "blah" } ] [ "<foo attr='blah'/>" string>xml-chunk "foo" deep-tags-named [ "attr" attr ] map ] unit-test
|
|
|
|
|
|
|
|
[ "blah" ] [ "<foo attr='blah'/>" string>xml "foo" deep-tag-named "attr" attr ] unit-test
|
|
|
|
|
2009-02-05 22:17:03 -05:00
|
|
|
[ { "blah" } ] [ "<foo attr='blah'/>" string>xml "foo" deep-tags-named [ "attr" attr ] map ] unit-test
|
2010-09-13 21:14:46 -04:00
|
|
|
|
|
|
|
[ { "blah" } ] [ "<foo><bar attr='blah'/></foo>" string>xml "blah" "attr" tags-with-attr [ "attr" attr ] map ] unit-test
|
|
|
|
[ { "blah" } ] [ "bar" { { "attr" "blah" } } f <tag> 1array "blah" "attr" tags-with-attr [ "attr" attr ] map ] unit-test
|