require 'spec_helper' module Refinery module GalleryLinks describe GalleryLink do describe "validations" do subject do FactoryGirl.create(:gallery_link, :title => "Refinery CMS") end it { should be_valid } its(:errors) { should be_empty } its(:title) { should == "Refinery CMS" } end end end end