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/support/feature_helpers.rb

20 lines
488 B
Ruby

module Asciinema
module FeatureHelpers
def expect_browse_links
expect(page).to have_link('All')
expect(page).to have_link('Featured')
end
def expect_doc_links
expect(page).to have_link('How it works')
expect(page).to have_link('Getting started')
expect(page).to have_link('Installation')
expect(page).to have_link('Usage')
expect(page).to have_link('Sharing & embedding')
expect(page).to have_link('FAQ')
end
end
end