aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lib/refinery/blog/engine_spec.rb
blob: 5b36fd86171612e0be4b3cc97fb246edbac436a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

module Refinery
  module Blog
    describe Engine do
      let(:activity) do
        Refinery::Plugins.registered.find_by_name("refinerycms_blog").activity.first
      end

      it "sets the correct path for activity entries" do
        activity.url.should eq("edit_refinery_admin_blog_posts_path")
      end
    end
  end
end