ensl.org/spec/controllers/shoutmsgs_controller_spec.rb
2020-03-09 00:07:12 +02:00

9 lines
No EOL
253 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