mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-16 06:40:37 +00:00
9 lines
204 B
Ruby
9 lines
204 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe ShoutmsgsController, type: :controller do
|
||
|
it "renders the index template" do
|
||
|
get :index
|
||
|
expect(response).to render_template("index")
|
||
|
end
|
||
|
end
|