aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_controller_spec.rb
blob: 5a52d16414582ef63b07930885cc25c31d4852b3 (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
  
  it "should render the front page" do
    get :index
    response.should render_template('index')
  end

end