Browse Source

Added default (testing) values for repo

Alois Mahdal 11 years ago
parent
commit
9ddd2be2a2
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lib/SugarTrail.pm

+ 2
- 2
lib/SugarTrail.pm View File

7
 our $VERSION = '0.1';
7
 our $VERSION = '0.1';
8
 
8
 
9
 my $r = SugarTrail::Repo->new(
9
 my $r = SugarTrail::Repo->new(
10
-    root    => config->{repo_root},
11
-    vcs     => config->{repo_vcs}
10
+    root    => config->{repo_root}  // "t/data/strepo",
11
+    vcs     => config->{repo_vcs}   // "git"
12
 );
12
 );
13
 
13
 
14
 
14