1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
class MockGitBackend class << self def create(repos_path) true end def delete!(repos_path) true end def repository_has_commits?(repos_path) false end end end