Adding more test stubs
This commit is contained in:
parent
66a2107527
commit
d4892ace62
13 changed files with 100 additions and 23 deletions
5
spec/services/fan_out_on_write_service_spec.rb
Normal file
5
spec/services/fan_out_on_write_service_spec.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe FanOutOnWriteService do
|
||||
subject { FanOutOnWriteService.new }
|
||||
end
|
5
spec/services/favourite_service_spec.rb
Normal file
5
spec/services/favourite_service_spec.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe FavouriteService do
|
||||
subject { FavouriteService.new }
|
||||
end
|
5
spec/services/precompute_feed_service_spec.rb
Normal file
5
spec/services/precompute_feed_service_spec.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe PrecomputeFeedService do
|
||||
subject { PrecomputeFeedService.new }
|
||||
end
|
|
@ -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
|
5
spec/services/update_remote_profile_service_spec.rb
Normal file
5
spec/services/update_remote_profile_service_spec.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe UpdateRemoteProfileService do
|
||||
subject { UpdateRemoteProfileService.new }
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue