use strict;
use warnings;
use Test::More tests => 1;
use XML::SemanticDiff;
my $orig = <<'EOF';
This presentation is a brief overview of the MediaLandscape Product and Serivce Offerings.
19
Central Time
(GMT-06:00) Central Time (US & Canada)
CST
EOF
my $derived = <<'EOF';
(GMT-06:00) Central Time (US & Canada)
CST
19
Central Time
This presentation is a brief overview of the MediaLandscape Product and Serivce Offerings.
EOF
my $diff = XML::SemanticDiff->new();
my @results = $diff->compare($orig, $derived);
# TEST
is_deeply (
\@results,
[],
"Making sure two XMLs with variation of tag locations are considered identical - per bug #18491"
);