Пример #1
0
        public void can_find_git_repos()
        {
            var repos = RepositoryCollection.FindRepositories(_path, RepositoryType.Git);

            Assert.True(repos.Any(x => x.Name == "Clean"));
            Assert.True(repos.Any(x => x.Name == "Dirty"));
            Assert.True(repos.Any(x => x.Name == "OnLocalBranch"));
        }