ensl.org/spec/controllers/articles_controller_spec.rb

9 lines
203 B
Ruby
Raw Normal View History

2019-10-17 23:51:40 +00:00
require 'rails_helper'
RSpec.describe ArticlesController, type: :controller do
it "renders the index template" do
get :index
expect(response).to render_template("index")
end
end