Add and apply RSpec/ReceiveMessages rubocop rule
This rule was added in rubocop-rspec 2.23.0. I didn't know this method existed, and it makes the code more readable in some cases.
This commit is contained in:
@@ -567,6 +567,9 @@ RSpec/Rails/NegationBeValid:
|
|||||||
RSpec/Rails/TravelAround:
|
RSpec/Rails/TravelAround:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
||||||
|
RSpec/ReceiveMessages:
|
||||||
|
Enabled: true
|
||||||
|
|
||||||
RSpec/RepeatedExample:
|
RSpec/RepeatedExample:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,7 @@ require "rails_helper"
|
|||||||
|
|
||||||
describe Admin::Budgets::IndexComponent, controller: Admin::BudgetsController do
|
describe Admin::Budgets::IndexComponent, controller: Admin::BudgetsController do
|
||||||
before do
|
before do
|
||||||
allow(vc_test_controller).to receive(:valid_filters).and_return(["all"])
|
allow(vc_test_controller).to receive_messages(valid_filters: ["all"], current_filter: "all")
|
||||||
allow(vc_test_controller).to receive(:current_filter).and_return("all")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "#phase_progress_text" do
|
describe "#phase_progress_text" do
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ describe Admin::Organizations::TableActionsComponent, controller: Admin::Organiz
|
|||||||
let(:component) { Admin::Organizations::TableActionsComponent.new(organization) }
|
let(:component) { Admin::Organizations::TableActionsComponent.new(organization) }
|
||||||
|
|
||||||
it "renders buttons to verify and reject when it can" do
|
it "renders buttons to verify and reject when it can" do
|
||||||
allow(component).to receive(:can_verify?).and_return(true)
|
allow(component).to receive_messages(can_verify?: true, can_reject?: true)
|
||||||
allow(component).to receive(:can_reject?).and_return(true)
|
|
||||||
|
|
||||||
render_inline component
|
render_inline component
|
||||||
|
|
||||||
@@ -17,8 +16,7 @@ describe Admin::Organizations::TableActionsComponent, controller: Admin::Organiz
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "renders button to verify when it cannot reject" do
|
it "renders button to verify when it cannot reject" do
|
||||||
allow(component).to receive(:can_verify?).and_return(true)
|
allow(component).to receive_messages(can_verify?: true, can_reject?: false)
|
||||||
allow(component).to receive(:can_reject?).and_return(false)
|
|
||||||
|
|
||||||
render_inline component
|
render_inline component
|
||||||
|
|
||||||
@@ -27,8 +25,7 @@ describe Admin::Organizations::TableActionsComponent, controller: Admin::Organiz
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "renders button to reject when it cannot verify" do
|
it "renders button to reject when it cannot verify" do
|
||||||
allow(component).to receive(:can_verify?).and_return(false)
|
allow(component).to receive_messages(can_verify?: false, can_reject?: true)
|
||||||
allow(component).to receive(:can_reject?).and_return(true)
|
|
||||||
|
|
||||||
render_inline component
|
render_inline component
|
||||||
|
|
||||||
@@ -37,8 +34,7 @@ describe Admin::Organizations::TableActionsComponent, controller: Admin::Organiz
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "does not render any actions when it cannot verify nor reject" do
|
it "does not render any actions when it cannot verify nor reject" do
|
||||||
allow(component).to receive(:can_verify?).and_return(false)
|
allow(component).to receive_messages(can_verify?: false, can_reject?: false)
|
||||||
allow(component).to receive(:can_reject?).and_return(false)
|
|
||||||
|
|
||||||
render_inline component
|
render_inline component
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,10 @@ require "rails_helper"
|
|||||||
|
|
||||||
describe SDGManagement::Relations::IndexComponent, controller: SDGManagement::RelationsController do
|
describe SDGManagement::Relations::IndexComponent, controller: SDGManagement::RelationsController do
|
||||||
before do
|
before do
|
||||||
allow(vc_test_controller).to receive(:valid_filters)
|
allow(vc_test_controller).to receive_messages(
|
||||||
.and_return(SDGManagement::RelationsController::FILTERS)
|
valid_filters: SDGManagement::RelationsController::FILTERS,
|
||||||
allow(vc_test_controller).to receive(:current_filter)
|
current_filter: SDGManagement::RelationsController::FILTERS.first
|
||||||
.and_return(SDGManagement::RelationsController::FILTERS.first)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "renders the search form" do
|
it "renders the search form" do
|
||||||
|
|||||||
@@ -39,22 +39,19 @@ describe ManagerAuthenticator do
|
|||||||
|
|
||||||
describe "#auth" do
|
describe "#auth" do
|
||||||
it "returns false if not manager_exists" do
|
it "returns false if not manager_exists" do
|
||||||
allow(authenticator).to receive(:manager_exists?).and_return(false)
|
allow(authenticator).to receive_messages(manager_exists?: false, application_authorized?: true)
|
||||||
allow(authenticator).to receive(:application_authorized?).and_return(true)
|
|
||||||
|
|
||||||
expect(authenticator.auth).to be false
|
expect(authenticator.auth).to be false
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns false if not application_authorized" do
|
it "returns false if not application_authorized" do
|
||||||
allow(authenticator).to receive(:manager_exists?).and_return(true)
|
allow(authenticator).to receive_messages(manager_exists?: true, application_authorized?: false)
|
||||||
allow(authenticator).to receive(:application_authorized?).and_return(false)
|
|
||||||
|
|
||||||
expect(authenticator.auth).to be false
|
expect(authenticator.auth).to be false
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns ok if manager_exists and application_authorized" do
|
it "returns ok if manager_exists and application_authorized" do
|
||||||
allow(authenticator).to receive(:manager_exists?).and_return(true)
|
allow(authenticator).to receive_messages(manager_exists?: true, application_authorized?: true)
|
||||||
allow(authenticator).to receive(:application_authorized?).and_return(true)
|
|
||||||
|
|
||||||
expect(authenticator.auth).to be_truthy
|
expect(authenticator.auth).to be_truthy
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -243,8 +243,7 @@ describe Budget::Stats do
|
|||||||
describe "#all_phases" do
|
describe "#all_phases" do
|
||||||
context "no phases are finished" do
|
context "no phases are finished" do
|
||||||
before do
|
before do
|
||||||
allow(stats).to receive(:support_phase_finished?).and_return(false)
|
allow(stats).to receive_messages(support_phase_finished?: false, vote_phase_finished?: false)
|
||||||
allow(stats).to receive(:vote_phase_finished?).and_return(false)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns an empty array" do
|
it "returns an empty array" do
|
||||||
@@ -254,8 +253,7 @@ describe Budget::Stats do
|
|||||||
|
|
||||||
context "one phase is finished" do
|
context "one phase is finished" do
|
||||||
before do
|
before do
|
||||||
allow(stats).to receive(:support_phase_finished?).and_return(true)
|
allow(stats).to receive_messages(support_phase_finished?: true, vote_phase_finished?: false)
|
||||||
allow(stats).to receive(:vote_phase_finished?).and_return(false)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns the finished phase" do
|
it "returns the finished phase" do
|
||||||
@@ -265,8 +263,7 @@ describe Budget::Stats do
|
|||||||
|
|
||||||
context "all phases are finished" do
|
context "all phases are finished" do
|
||||||
before do
|
before do
|
||||||
allow(stats).to receive(:support_phase_finished?).and_return(true)
|
allow(stats).to receive_messages(support_phase_finished?: true, vote_phase_finished?: true)
|
||||||
allow(stats).to receive(:vote_phase_finished?).and_return(true)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns the finished phases and a total phase" do
|
it "returns the finished phases and a total phase" do
|
||||||
|
|||||||
@@ -93,9 +93,11 @@ describe Newsletter do
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "sends batches in time intervals" do
|
it "sends batches in time intervals" do
|
||||||
allow(newsletter).to receive(:batch_size).and_return(1)
|
allow(newsletter).to receive_messages(
|
||||||
allow(newsletter).to receive(:batch_interval).and_return(1.second)
|
batch_size: 1,
|
||||||
allow(newsletter).to receive(:first_batch_run_at).and_return(Time.current)
|
batch_interval: 1.second,
|
||||||
|
first_batch_run_at: Time.current
|
||||||
|
)
|
||||||
|
|
||||||
newsletter.deliver
|
newsletter.deliver
|
||||||
|
|
||||||
|
|||||||
@@ -169,9 +169,7 @@ describe Statisticable do
|
|||||||
|
|
||||||
context "all gender, age and geozone stats" do
|
context "all gender, age and geozone stats" do
|
||||||
before do
|
before do
|
||||||
allow(stats).to receive(:gender?).and_return(true)
|
allow(stats).to receive_messages(gender?: true, age?: true, geozone?: true)
|
||||||
allow(stats).to receive(:age?).and_return(true)
|
|
||||||
allow(stats).to receive(:geozone?).and_return(true)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "includes all stats methods" do
|
it "includes all stats methods" do
|
||||||
|
|||||||
@@ -153,12 +153,9 @@ RSpec.configure do |config|
|
|||||||
config.before(:each, :application_zone_west_of_system_zone) do
|
config.before(:each, :application_zone_west_of_system_zone) do
|
||||||
application_zone = ActiveSupport::TimeZone.new("Quito")
|
application_zone = ActiveSupport::TimeZone.new("Quito")
|
||||||
system_zone = ActiveSupport::TimeZone.new("Madrid")
|
system_zone = ActiveSupport::TimeZone.new("Madrid")
|
||||||
|
|
||||||
allow(Time).to receive(:zone).and_return(application_zone)
|
|
||||||
|
|
||||||
system_time_at_application_end_of_day = Date.current.end_of_day.in_time_zone(system_zone)
|
system_time_at_application_end_of_day = Date.current.end_of_day.in_time_zone(system_zone)
|
||||||
|
|
||||||
allow(Time).to receive(:now).and_return(system_time_at_application_end_of_day)
|
allow(Time).to receive_messages(zone: application_zone, now: system_time_at_application_end_of_day)
|
||||||
allow(Date).to receive(:today).and_return(system_time_at_application_end_of_day.to_date)
|
allow(Date).to receive(:today).and_return(system_time_at_application_end_of_day.to_date)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -213,9 +213,11 @@ describe "Notifications" do
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "sends batches in time intervals" do
|
it "sends batches in time intervals" do
|
||||||
allow(Notification).to receive(:batch_size).and_return(1)
|
allow(Notification).to receive_messages(
|
||||||
allow(Notification).to receive(:batch_interval).and_return(1.second)
|
batch_size: 1,
|
||||||
allow(Notification).to receive(:first_batch_run_at).and_return(Time.current)
|
batch_interval: 1.second,
|
||||||
|
first_batch_run_at: Time.current
|
||||||
|
)
|
||||||
|
|
||||||
remove_users_without_pending_notifications
|
remove_users_without_pending_notifications
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user