Don't show timeout message for empty diffs (ie. blank file added)
[gitorious.git] / lib / mock_git_backend.rb
blobafa967d0803c38101bc9dca880ee844bb0846540
1 #--
2 #   Copyright (C) 2012-2013 Gitorious AS
4 #   This program is free software: you can redistribute it and/or modify
5 #   it under the terms of the GNU Affero General Public License as published by
6 #   the Free Software Foundation, either version 3 of the License, or
7 #   (at your option) any later version.
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU Affero General Public License for more details.
14 #   You should have received a copy of the GNU Affero General Public License
15 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #++
18 class MockGitBackend
19   class << self
20     def create(repos_path)
21       true
22     end
23     
24     def delete!(repos_path)
25       true
26     end
27     
28     def repository_has_commits?(repos_path)
29       false
30     end
31   end
32 end