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

38 lines
1.0 KiB
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('Recorder options')
expect(page).to have_link('Embedding')
expect(page).to have_link('FAQ')
end
def set_omniauth(provider, opts = {})
if opts[:message]
OmniAuth.config.mock_auth[provider] = opts[:message]
else
OmniAuth.config.mock_auth[provider] = OmniAuth::AuthHash.new({
:provider => provider.to_s,
:uid => '123456',
:info => { :username => opts[:username] },
:extra => {
:raw_info => {
:avatar_url =>
'http://gravatar.com/avatar/9cecfc695240b56e5d3c1a5dc3830967'
}
}
})
end
end
end
end