Sha256: 275f6c2284d4bab57a8f2bc11caccff60c7c121f3133767cecd65556c28c7ac4
Contents?: true
Size: 347 Bytes
Versions: 7
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true RSpec.describe PageMagic::Drivers::Selenium do subject do described_class.build(:app, browser: :selenium, options: {}) end it 'is selenium' do expect(subject).to be_a(Capybara::Selenium::Driver) end it 'sets the browser option' do expect(subject.options[:browser]).to be(:selenium) end end
Version data entries
7 entries across 7 versions & 1 rubygems