blob: ba10ffe201364408d2b61436ef1d9d40a17c7017 (
plain) (
tree)
|
|
require 'spec_helper'
describe "Blog menu entry" do
refinery_login_with :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
|