24 lines
735 B
Ruby
24 lines
735 B
Ruby
require "spec_helper"
|
|
|
|
module Refinery
|
|
describe "BlogCategories" do
|
|
refinery_login_with :refinery_user
|
|
|
|
context "has one category and post" do
|
|
before(:each) do
|
|
@post = FactoryGirl.create(:blog_post, :title => "Refinery CMS blog post")
|
|
@category = FactoryGirl.create(:blog_category, :title => "Video Games")
|
|
@post.categories << @category
|
|
@post.save!
|
|
end
|
|
|
|
describe "show categories blog posts" do
|
|
before(:each) { visit refinery.blog_category_path(@category) }
|
|
it "should displays categories blog posts" do
|
|
page.should have_content("Refinery CMS blog post")
|
|
page.should have_content("Video Games")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|