fixed email markdown

This commit is contained in:
gitlabhq 2012-04-23 15:32:56 +03:00
parent 21f3da2358
commit d97a9aa4a4
6 changed files with 22 additions and 4 deletions

View file

@ -12,6 +12,10 @@ class Project
def path_to_repo
File.join(Rails.root, "tmp", "tests", path)
end
def satellite
@satellite ||= FakeSatellite.new
end
end
class Key
@ -29,3 +33,15 @@ class UsersProject
true
end
end
class FakeSatellite
def exists?
true
end
def create
true
end
end