aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/admin_controller_spec.rb')
-rw-r--r--spec/controllers/admin_controller_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/controllers/admin_controller_spec.rb b/spec/controllers/admin_controller_spec.rb
deleted file mode 100644
index f2c6c8038..000000000
--- a/spec/controllers/admin_controller_spec.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-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
-
- it "should render the front page with time line for last month" do
- get :index, :month => 1
- response.should render_template('index')
- end
-
- it "should render the front page with time line for all time" do
- get :index, :all => 1
- response.should render_template('index')
- end
-end