From 3e9b604d1bdc9c3f1475a35c658d425a85d4a8c3 Mon Sep 17 00:00:00 2001 From: Philip Arndt Date: Wed, 12 Nov 2014 22:10:50 -0600 Subject: Give the test user access to refinerycms_blog extension. Fixes #392 --- lib/refinery/blog/engine.rb | 2 +- spec/controllers/refinery/blog/admin/comments_controller_spec.rb | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/refinery/blog/engine.rb b/lib/refinery/blog/engine.rb index 95952d0..7b29466 100644 --- a/lib/refinery/blog/engine.rb +++ b/lib/refinery/blog/engine.rb @@ -10,7 +10,7 @@ module Refinery plugin.pathname = root plugin.name = "refinerycms_blog" plugin.url = proc { Refinery::Core::Engine.routes.url_helpers.blog_admin_posts_path } - plugin.menu_match = /refinery\/blog\/?(posts|comments|categories)?/ + plugin.menu_match = %r{refinery/blog/?(posts|comments|categories)?} end end diff --git a/spec/controllers/refinery/blog/admin/comments_controller_spec.rb b/spec/controllers/refinery/blog/admin/comments_controller_spec.rb index 9346ff5..5a439f1 100644 --- a/spec/controllers/refinery/blog/admin/comments_controller_spec.rb +++ b/spec/controllers/refinery/blog/admin/comments_controller_spec.rb @@ -5,6 +5,9 @@ module Refinery module Admin describe CommentsController, type: :controller do refinery_login_with :refinery_user + before do + logged_in_user.plugins = logged_in_user.plugins | %w(refinerycms_blog) + end describe "#index" do let!(:comment) { FactoryGirl.create(:blog_comment) } -- cgit v1.2.3