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.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/controllers/admin_controller_spec.rb b/spec/controllers/admin_controller_spec.rb
new file mode 100644
index 000000000..5a52d1641
--- /dev/null
+++ b/spec/controllers/admin_controller_spec.rb
@@ -0,0 +1,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