diff options
-rw-r--r-- | lib/refinery/blog/engine.rb | 2 | ||||
-rw-r--r-- | spec/controllers/refinery/blog/admin/comments_controller_spec.rb | 3 |
2 files changed, 4 insertions, 1 deletions
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) } |