YaleSTC/shifts

View on GitHub
spec_old/controllers/first_run_controller_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require File.dirname(__FILE__) + '/../spec_helper'
 
describe FirstRunController do
  fixtures :all
  render_views
  
  it "index action should render index template" do
    get :index
    response.should render_template(:index)
  end
end