scube-server/spec/features/tracks/player_spec.rb
2015-05-03 22:58:05 +00:00

12 lines
252 B
Ruby

feature 'Tracks player' do
background { sign_in }
scenario 'includes a player in track page' do
track = create :track_with_sound
visit track_path track
expect(page).to have_xpath "//audio[@src='#{sound_path track.sound}']"
end
end