aboutsummaryrefslogtreecommitdiffstats
path: root/t/001-setup.t
blob: 0e591c4507a2b01fecda90d94b64facf28336a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env perl -w

use strict;

use Test::More;

system('git init t-git-repo');
ok !$?;

chdir 't-git-repo' or die $!;

system('echo tmp > tmp.txt');
ok !$?;

system('git add tmp.txt');
ok !$?;

system('git commit -m "Commit"');
ok !$?;

done_testing;