Make Object aware of its containing repository, and able to return its contents.
[catagits/Gitalist.git] / t / git / project.t
CommitLineData
7e7f9335 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use Test::More qw/no_plan/;
5
6use Data::Dumper;
7
8BEGIN { use_ok 'Gitalist::Git::Project' }
9
10use Path::Class;
0a1bb426 11my $gitdir = dir("$Bin/../lib/repositories/repo1");
12
7e7f9335 13my $proj = Gitalist::Git::Project->new(
0a1bb426 14 path => $gitdir,
7e7f9335 15 name => "repo1",
16);
17isa_ok($proj, 'Gitalist::Git::Project');
0a1bb426 18is($proj->path, $gitdir, 'repository path is set');
7e7f9335 19is($proj->name, qw/repo1/, 'repository name is set');
20is($proj->description, qq/some test repository/, 'repository description loaded');
21isa_ok($proj->last_change, 'DateTime', 'last_change');
22
44e06365 23is($proj->info->{name}, qw/repo1/, 'repo name in info hash');
24
0a1bb426 25is($proj->head_hash, qw/36c6c6708b8360d7023e8a1649c45bcf9b3bd818/, 'head_hash for HEAD is correct');
8c0e3a9c 26
27is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
28isa_ok(($proj->list_tree)[0], 'Gitalist::Git::Object');
9bc54ee4 29