aboutsummaryrefslogtreecommitdiffstats
path: root/spec/requests/refinery/blog/admin/menu_spec.rb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-01-09 10:38:26 +1300
committerPhilip Arndt <parndt@gmail.com>2012-01-17 16:56:23 +1300
commitb3a25c1b686d205fc6b8b409a8f90059ae6b934d (patch)
treeb0590a4c85422d000a22423114849fd1679392dd /spec/requests/refinery/blog/admin/menu_spec.rb
parent2a2fcca64972bc2fb6a3530395366fb2ade42303 (diff)
downloadrefinerycms-blog-b3a25c1b686d205fc6b8b409a8f90059ae6b934d.tar.gz
refinerycms-blog-b3a25c1b686d205fc6b8b409a8f90059ae6b934d.tar.bz2
refinerycms-blog-b3a25c1b686d205fc6b8b409a8f90059ae6b934d.zip
Restructured part of the project to Refinery::Blog::Admin not Refinery::Admin::Blog
Diffstat (limited to 'spec/requests/refinery/blog/admin/menu_spec.rb')
-rw-r--r--spec/requests/refinery/blog/admin/menu_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/requests/refinery/blog/admin/menu_spec.rb b/spec/requests/refinery/blog/admin/menu_spec.rb
new file mode 100644
index 0000000..b02a473
--- /dev/null
+++ b/spec/requests/refinery/blog/admin/menu_spec.rb
@@ -0,0 +1,13 @@
+require 'spec_helper'
+
+describe "Blog menu entry" do
+ login_refinery_user
+
+ it "is highlighted when managing the blog" do
+ visit refinery_admin_root_path
+
+ within("#menu") { click_link "Blog" }
+
+ page.should have_css("a.active", :text => "Blog")
+ end
+end