aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_controller_spec.rb
diff options
context:
space:
mode:
authorfrancis <francis>2009-02-02 15:17:04 +0000
committerfrancis <francis>2009-02-02 15:17:04 +0000
commitad49968195baeef099d00ce211a5b7d5bf8fff44 (patch)
treed3475671b2d293acb9fab24d7439dc0f902b5588 /spec/controllers/admin_controller_spec.rb
parent2d4b0774e0b9ddebe5adc823042dbc41a9fa203c (diff)
Updates to test code with move of controller.
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