Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fork_registration_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc6f574b29c640977822092cb268ea8845e05cd3 (plain)
1
2
3
4
5
6
7
8
9
10

require 'spec_helper'

describe ForkRegistrationWorker do
  context "as a resque worker" do
    it "reponds to #perform" do
      expect(ForkRegistrationWorker.new).to respond_to(:perform)
    end
  end
end