mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
10 lines
254 B
Ruby
10 lines
254 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe ShoutmsgsController, type: :controller do
|
||
|
it "renders the index template" do
|
||
|
get :index
|
||
|
expect(response).to have_http_status(200)
|
||
|
expect(response).to render_template("index")
|
||
|
end
|
||
|
end
|