You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
213 B

  1. require 'rails_helper'
  2. RSpec.describe FollowService do
  3. subject { FollowService.new }
  4. it 'creates a following relation'
  5. it 'creates local account for remote user'
  6. it 'sends follow to the remote user'
  7. end