summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-11-29 15:42:54 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-11-29 15:42:54 +0100
commitc4cc115ec6434b7245a710ecba99dc11d16ae1d1 (patch)
treef2e244b7d7f1f9b5cf7f739a5221470f071617d5 /lib
parent9aa1eab9c3fca4713ae67acab23d9b65e96ace9b (diff)
add tests for XML parsing
Diffstat (limited to 'lib')
-rw-r--r--lib/Travel/Routing/DE/VRR.pm12
-rw-r--r--lib/Travel/Routing/DE/VRR/Route/Part.pm6
2 files changed, 18 insertions, 0 deletions
diff --git a/lib/Travel/Routing/DE/VRR.pm b/lib/Travel/Routing/DE/VRR.pm
index 56aa28e..afa2ffe 100644
--- a/lib/Travel/Routing/DE/VRR.pm
+++ b/lib/Travel/Routing/DE/VRR.pm
@@ -395,6 +395,18 @@ sub new {
return $ref;
}
+sub new_from_xml {
+ my ( $class, %opt ) = @_;
+
+ my $self = { xml_reply => $opt{xml} };
+
+ bless( $self, $class );
+
+ $self->parse();
+
+ return $self;
+}
+
sub submit {
my ( $self, %conf ) = @_;
diff --git a/lib/Travel/Routing/DE/VRR/Route/Part.pm b/lib/Travel/Routing/DE/VRR/Route/Part.pm
index 5122868..9c35196 100644
--- a/lib/Travel/Routing/DE/VRR/Route/Part.pm
+++ b/lib/Travel/Routing/DE/VRR/Route/Part.pm
@@ -44,6 +44,12 @@ sub extra {
return @{ $self->{extra} // [] };
}
+sub via {
+ my ($self) = @_;
+
+ return ${ $self->{via} // [] };
+}
+
1;
__END__