From 3e3f3d198ff24742b34dd77b6cd88a2417d27976 Mon Sep 17 00:00:00 2001 From: francis Date: Wed, 31 Oct 2007 17:25:29 +0000 Subject: Move signin/signup/signout actions from application controller to user controller. (They were already only being routed to the user controller) --- spec/controllers/admin_controller_spec.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 spec/controllers/admin_controller_spec.rb (limited to 'spec/controllers/admin_controller_spec.rb') 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 -- cgit v1.2.3