-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path110-xml.t
49 lines (43 loc) · 1.13 KB
/
110-xml.t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use v6.c;
use Test;
use SemiXML::Sxml;
#-------------------------------------------------------------------------------
# Testing http-header
# Options under
#-------------------------------------------------------------------------------
# Setup
my $content = q:to/EOSX/;
$html [
$body [
$h1 [burp]
$p [this is it!]
]
]
EOSX
#-------------------------------------------------------------------------------
my Hash $config = {
C => {
out-fmt => {
header-show => True,
doctype-show => True,
xml-show => True
}
},
H => {
out-fmt => {
content-type => 'text/html',
content-language => 'en'
}
}
};
#-------------------------------------------------------------------------------
my SemiXML::Sxml $x .= new( :!trace, :merge, :refine([<in-fmt out-fmt>]));
$x.parse( :$content, :$config);
my Str $xml-text = ~$x;
#note $xml-text;
like $xml-text, /:s 'content-type' ':' 'text/html' /, 'Http content type';
like $xml-text, /:s 'content-language' ':' 'en' /, 'Http content language';
#-------------------------------------------------------------------------------
# Cleanup
done-testing();
exit(0);