#!/usr/local/bin/perl -w
=head1 NAME
02source.t - testing of VCP::Source services
=cut
use strict ;
use Carp ;
use Test ;
use VCP::Source;
my $p ;
my @tests = (
sub {
$p = VCP::Source->new() ;
ok ref $p, 'VCP::Source';
},
sub {
$p->bootstrap( "foo" );
ok join( " ", map "'$_'", $p->options_as_strings ), qr/'--bootstrap=foo'/;
},
) ;
plan tests => scalar( @tests ) ;
$_->() for @tests ;
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #5 | 5404 | Barrie Slaymaker |
- SVN support added - Makefile gives clearer notices about missing optional prereqs. - VCP::Filter::labelmap and VCP::Filter::map: <<skip>> replaces deprecated <<delete>> to be clearer that no revisions are deleted from either repository but some just are skipped and not inserted. - VCP::Filter::map: support added for SVN-like branch labels - VCP::Source: support added for ISO8601 timestamps emitted by SVN. |
||
| #4 | 5344 | Barrie Slaymaker | - Add test for time parsing fixed bug in VCP::Source. | ||
| #3 | 4135 | Barrie Slaymaker | - Time fields may have trailing AM/PM or A/P without leading whitespace | ||
| #2 | 4134 | Barrie Slaymaker |
- "AM", "PM", "A", and "P" (case insensitive) are now parsed properly when parsing time values |
||
| #1 | 3460 | Barrie Slaymaker |
- Revamp Plugin/Source/Dest hierarchy to allow for reguritating options in to .vcp files |