asciinema.org/spec/support/feature_helpers.rb
2014-12-17 15:25:13 +00:00

20 lines
478 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('Embedding')
expect(page).to have_link('FAQ')
end
end
end