Add specs for correct template in about controller
This commit is contained in:
parent
a07c5b962a
commit
63ca38ccbc
|
@ -3,6 +3,32 @@
|
|||
require "rails_helper"
|
||||
|
||||
describe AboutController, type: :controller do
|
||||
describe "#index" do
|
||||
subject { get :index }
|
||||
|
||||
context "advanced layout is enabled" do
|
||||
before do
|
||||
allow(APP_CONFIG).to receive(:dig).with(:features, :advanced_frontpage, :enabled).and_return(true)
|
||||
end
|
||||
|
||||
it "renders the correct template" do
|
||||
subject
|
||||
expect(response).to render_template("about/index_advanced")
|
||||
end
|
||||
end
|
||||
|
||||
context "advanced layout is disabled" do
|
||||
before do
|
||||
allow(APP_CONFIG).to receive(:dig).with(:features, :advanced_frontpage, :enabled).and_return(false)
|
||||
end
|
||||
|
||||
it "renders the correct template" do
|
||||
subject
|
||||
expect(response).to render_template("about/index")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "#about" do
|
||||
subject { get :about }
|
||||
|
||||
|
|
Loading…
Reference in New Issue