scube-server/spec/models/playlist_spec.rb
2014-04-03 02:20:37 +00:00

12 lines
274 B
Ruby

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