mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 21:43:38 +08:00
8 lines
221 B
Ruby
8 lines
221 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe Jobs::BackfillSidebarSiteSettings do
|
||
|
it "should have a cluster concurrency of 1" do
|
||
|
expect(Jobs::BackfillSidebarSiteSettings.get_cluster_concurrency).to eq(1)
|
||
|
end
|
||
|
end
|