Fix uneeded double-quotes usage in Playlist specs

This commit is contained in:
Thibault Jouan 2011-07-13 18:38:10 +00:00
parent 301205d3f0
commit d35327e6f2

View File

@ -4,11 +4,11 @@ describe Playlist do
subject { playlist }
let(:playlist) { Playlist.new :name => 'Electro' }
context "with valid attributes" do
context 'with valid attributes' do
it { should be_valid }
end
context "when name empty" do
context 'when name empty' do
before do
playlist.name = ''
end