mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
12 lines
172 B
Ruby
12 lines
172 B
Ruby
require 'spec_helper'
|
|
|
|
describe Artist do
|
|
|
|
let(:artist) { Artist.new('Alice Cooper') }
|
|
|
|
it 'has attributes' do
|
|
expect(artist.name).to eq('Alice Cooper')
|
|
end
|
|
|
|
end
|