aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_controller_spec.rb
blob: 2d55daa8731ddcd8da46f591ce0dda76921ac424 (plain)
1
2
3
4
5
6
7
8
9
10
require File.dirname(__FILE__) + '/../spec_helper'

describe AdminController, "when viewing front page of admin interface" do
    integrate_views
  
    it "should render the front page" do
        get :index
        response.should render_template('index')
    end
end