Sha256: bafac6e7c53533afe50ff443412324ad6318547017736264f3b797922a5f81a7

Contents?: true

Size: 1.4 KB

Versions: 10

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true
require 'spec_helper'

RSpec.describe 'capybara/rspec', :type => :feature do
  it "should include Capybara in rspec" do
    visit('/foo')
    expect(page.body).to include('Another World')
  end

  context "resetting session" do
    it "sets a cookie in one example..." do
      visit('/set_cookie')
      expect(page.body).to include('Cookie set to test_cookie')
    end

    it "...then it is not available in the next" do
      visit('/get_cookie')
      expect(page.body).not_to include('test_cookie')
    end
  end

  context "setting the current driver" do
    it "sets the current driver in one example..." do
      Capybara.current_driver = :selenium
    end

    it "...then it has returned to the default in the next example" do
      expect(Capybara.current_driver).to eq(:rack_test)
    end
  end

  it "switches to the javascript driver when giving it as metadata", js: true do
    expect(Capybara.current_driver).to eq(Capybara.javascript_driver)
  end

  it "switches to the given driver when giving it as metadata", :driver => :culerity do
    expect(Capybara.current_driver).to eq(:culerity)
  end
end

RSpec.describe 'capybara/rspec', :type => :other do
  it "should not include Capybara" do
    expect { visit('/') }.to raise_error(NoMethodError)
  end
end

feature "Feature DSL" do
  scenario "is pulled in" do
    visit('/foo')
    expect(page.body).to include('Another World')
  end
end

Version data entries

10 entries across 9 versions & 2 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/capybara-2.13.0/spec/rspec_spec.rb
tdiary-5.0.5 vendor/bundle/gems/capybara-2.13.0/spec/rspec_spec.rb
tdiary-5.0.4 vendor/bundle/gems/capybara-2.13.0/spec/rspec_spec.rb
capybara-2.13.0 spec/rspec_spec.rb
capybara-2.12.1 spec/rspec_spec.rb
capybara-2.12.0 spec/rspec_spec.rb
capybara-2.11.0 spec/rspec_spec.rb
capybara-2.10.2 spec/rspec_spec.rb
capybara-2.10.1 spec/rspec_spec.rb
capybara-2.10.0 spec/rspec_spec.rb