0
0
Fork 0

Adding more test stubs

This commit is contained in:
Eugen Rochko 2016-03-19 12:13:47 +01:00
parent 66a2107527
commit d4892ace62
13 changed files with 100 additions and 23 deletions

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe FanOutOnWriteService do
subject { FanOutOnWriteService.new }
end

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe FavouriteService do
subject { FavouriteService.new }
end

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe PrecomputeFeedService do
subject { PrecomputeFeedService.new }
end

View file

@ -1,8 +0,0 @@
require 'rails_helper'
RSpec.describe SetupLocalAccountService do
subject { SetupLocalAccountService.new }
it 'creates a user'
it 'creates an account for the user'
end

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe UpdateRemoteProfileService do
subject { UpdateRemoteProfileService.new }
end