2012-11-18 23:19:42 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2013-05-27 19:25:29 +00:00
|
|
|
feature "Asciicast lists" do
|
2012-11-21 22:53:48 +00:00
|
|
|
|
2013-10-20 15:26:01 +00:00
|
|
|
let!(:asciicast) { create(:asciicast) }
|
2012-11-18 23:19:42 +00:00
|
|
|
|
2013-05-27 19:25:29 +00:00
|
|
|
scenario 'Visiting all' do
|
|
|
|
visit browse_path
|
2012-11-20 17:47:22 +00:00
|
|
|
|
2013-05-27 19:25:29 +00:00
|
|
|
expect(page).to have_content(/All Asciicasts/i)
|
2013-05-27 20:04:52 +00:00
|
|
|
expect_browse_links
|
2013-10-20 15:26:01 +00:00
|
|
|
expect(page).to have_link("bashing")
|
2013-05-27 19:25:29 +00:00
|
|
|
expect(page).to have_selector('.supplimental .play-button')
|
2012-11-21 22:53:48 +00:00
|
|
|
end
|
2012-11-18 23:19:42 +00:00
|
|
|
|
2013-05-27 19:25:29 +00:00
|
|
|
scenario 'Visiting popular' do
|
2013-08-04 21:09:48 +00:00
|
|
|
visit asciicast_path(asciicast)
|
2013-05-27 19:25:29 +00:00
|
|
|
visit popular_path
|
2012-11-21 23:06:22 +00:00
|
|
|
|
2013-05-27 19:25:29 +00:00
|
|
|
expect(page).to have_content(/Popular Asciicasts/i)
|
2013-05-27 20:04:52 +00:00
|
|
|
expect_browse_links
|
2013-10-20 15:26:01 +00:00
|
|
|
expect(page).to have_link("bashing")
|
2013-05-27 19:25:29 +00:00
|
|
|
expect(page).to have_selector('.supplimental .play-button')
|
2012-11-18 23:19:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|