scube-server/spec/models/playlist_spec.rb
2011-09-21 00:07:19 +00:00

12 lines
270 B
Ruby

require 'spec_helper'
describe Playlist do
subject { playlist }
let(:playlist) { Factory.build(:playlist) }
it { should be_valid }
it { should belong_to :user }
it { should validate_presence_of :user }
it { should validate_presence_of :name }
end