You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/features/user_spec.rb

18 lines
452 B
Ruby

require 'spec_helper'
feature "User's profile" do
let!(:user) { create(:user) }
let!(:asciicast) { create(:asciicast, :user => user, :title => 'Tricks!') }
scenario 'Visiting' do
visit profile_path(user)
expect(page).to have_content(/Asciicasts by ~#{user.nickname}/i)
expect(page).to have_content('1 asciicasts')
expect(page).to have_link('Tricks!')
expect(page).to have_selector('.supplimental .play-button')
end
end