浏览代码

Added default (testing) values for repo

Alois Mahdal 11 年前
父节点
当前提交
9ddd2be2a2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      lib/SugarTrail.pm

+ 2
- 2
lib/SugarTrail.pm 查看文件

@@ -7,8 +7,8 @@ use helper;
7 7
 our $VERSION = '0.1';
8 8
 
9 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