0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-01-22 17:21:10 +00:00
ensl.org/spec/controllers/shoutmsgs_controller_spec.rb

10 lines
254 B
Ruby
Raw Normal View History

2020-03-08 22:07:12 +00:00
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
2019-10-17 23:51:40 +00:00
end