소스 검색

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