main
1require 'spec_helper'
2
3describe Link do
4 describe :attributes do
5 subject { Link.new }
6 it { should respond_to :url }
7 it { should respond_to :title }
8 it { should respond_to :description }
9 it { should respond_to :thumbnail_url }
10 end
11end