asciinema.org/spec/support/feature_helpers.rb

20 lines
489 B
Ruby
Raw Normal View History

module Asciinema
2013-05-27 19:25:29 +00:00
module FeatureHelpers
def expect_browse_links
2013-05-27 19:25:29 +00:00
expect(page).to have_link('All')
expect(page).to have_link('Featured')
2013-05-27 19:25:29 +00:00
end
2013-05-27 20:03:16 +00:00
def expect_doc_links
2013-11-18 11:17:05 +00:00
expect(page).to have_link('How it works')
2013-05-27 20:03:16 +00:00
expect(page).to have_link('Getting started')
2013-11-18 11:17:05 +00:00
expect(page).to have_link('Installation')
2013-05-27 20:03:16 +00:00
expect(page).to have_link('Recorder options')
2013-11-18 11:17:05 +00:00
expect(page).to have_link('Embedding')
expect(page).to have_link('FAQ')
2013-05-27 20:03:16 +00:00
end
2013-05-27 19:25:29 +00:00
end
end