File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
exist-core/src/test/xquery/xquery3 Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -774,3 +774,31 @@ function ser:item-separator-text-method() {
774
774
let $data := (1 , 2 )
775
775
return ser:serialize-with-item-separator ($data, "text" )
776
776
};
777
+
778
+ declare
779
+ %test:assertEquals("1--2" )
780
+ function ser:item-separator-html-method () {
781
+ let $data := (1 , 2 )
782
+ return ser:serialize-with-item-separator ($data, "html" )
783
+ };
784
+
785
+ declare
786
+ %test:assertEquals("1--2" )
787
+ function ser:item-separator-xhtml-method () {
788
+ let $data := (1 , 2 )
789
+ return ser:serialize-with-item-separator ($data, "xhtml" )
790
+ };
791
+
792
+ declare
793
+ %test:assertEquals("1--2" )
794
+ function ser:item-separator-xml-method () {
795
+ let $data := (1 , 2 )
796
+ return ser:serialize-with-item-separator ($data, "xml" )
797
+ };
798
+
799
+ declare
800
+ %test:assertEquals("1--2" )
801
+ function ser:item-separator-adaptive-method () {
802
+ let $data := (1 , 2 )
803
+ return ser:serialize-with-item-separator ($data, "adaptive" )
804
+ };
You can’t perform that action at this time.
0 commit comments