gitlabhq/spec/support/namespaces_stub.rb
Dmitriy Zaporozhets 65c470e843 Reannotated
2012-11-24 22:16:51 +02:00

19 lines
202 B
Ruby

require 'namespace'
require 'gitlab/project_mover'
class Namespace
def ensure_dir_exist
true
end
def move_dir
true
end
end
class Gitlab::ProjectMover
def execute
true
end
end