Stub ResetProjectCacheService

This commit is contained in:
Matija Čupić 2017-12-21 01:31:16 +01:00
parent d69f0feea8
commit a8c016d5bd
No known key found for this signature in database
GPG Key ID: 4BAF84FFACD2E5DE
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,4 @@
class ResetProjectCacheService < BaseService
def execute
end
end

View File

@ -0,0 +1,12 @@
require 'spec_helper'
describe ResetProjectCacheService do
let(:project) { create(:project) }
let(:user) { create(:user) }
subject { described_class.new(project, user).execute }
it "resets project cache" do
fail
end
end