Skip to content

Instantly share code, notes, and snippets.

@kouyaf77
kouyaf77 / test_rspec.rb
Created March 18, 2015 11:59
Rspec test
require "rails_helper"
describe TestsController, type: :controller do
render_views
let(:tests){FactoryGirl.create_list :test, 3}
let(:test){FactoryGirl.create :test}
describe "GET #index" do
before {get :index}