aboutsummaryrefslogtreecommitdiffstats
path: root/spec/requests/refinery/blog/admin/menu_spec.rb
blob: 8b4b011ebdf98182ae7a28b876cb5f887dfea352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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