From: Richard Hartmann Date: Sat, 25 Oct 2014 23:04:13 +0000 (+0200) Subject: Fix tests X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/dd7e32f2cbc2ad60bee86d8c3f5dffd436d360be Fix tests --- diff --git a/t/000-tear-env.t b/t/000-tear-env.t index afe261a..6cb384f 100644 --- a/t/000-tear-env.t +++ b/t/000-tear-env.t @@ -9,7 +9,7 @@ use Test::Most; chdir 't' or die $!; if (!-d 'etc') { - plan skip_all => 'No need to tear previous env.'; + plan skip_all => 'No need to tear down previous env.'; } ok rm_rf 'etc'; diff --git a/t/300-add.t b/t/300-add.t index 6c8b9cd..58843c8 100644 --- a/t/300-add.t +++ b/t/300-add.t @@ -12,21 +12,24 @@ chdir 't/etc/' or die $!; $ENV{'HOME'} = abs_path ('.vcsh_home'); +chdir '.vcsh_home' or die $!; + eval { touch 'a'; }; die $@ if $@; -system ("./vcsh test1 add 'a'"); +system (".././vcsh test1 add 'a'"); -my $output = `./vcsh status`; +my $output = `.././vcsh status`; diag $output; ok $output eq "test1: -A a -", 'Adding a file worksl'; +A a + +", 'Adding a file works'; done_testing;