ensl.org/spec/controllers/shoutmsgs_controller_spec.rb

9 lines
204 B
Ruby
Raw Normal View History

2019-10-17 23:51:40 +00:00
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