diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-11-29 15:42:54 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-11-29 15:42:54 +0100 |
commit | c4cc115ec6434b7245a710ecba99dc11d16ae1d1 (patch) | |
tree | f2e244b7d7f1f9b5cf7f739a5221470f071617d5 /lib/Travel/Routing/DE/VRR/Route | |
parent | 9aa1eab9c3fca4713ae67acab23d9b65e96ace9b (diff) |
add tests for XML parsing
Diffstat (limited to 'lib/Travel/Routing/DE/VRR/Route')
-rw-r--r-- | lib/Travel/Routing/DE/VRR/Route/Part.pm | 6 |
1 files changed, 6 insertions, 0 deletions
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__ |