Sha256: 2935260c3d2a6e3fbc3e14d418e61e4c443c9e8ecc9a0c1fabb9fda5d51bd5e5

Contents?: true

Size: 703 Bytes

Versions: 6

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true

require "spec_helpers"

describe Wayfarer::Config::Root do
  subject(:config) { Wayfarer::Config::Root.new }

  describe "#ferrum" do
    it "returns a Ferrum config" do
      expect(config.ferrum).to be_a(Wayfarer::Config::Ferrum)
    end
  end

  describe "#network" do
    it "returns a network config" do
      expect(config.network).to be_a(Wayfarer::Config::Networking)
    end
  end

  describe "#redis" do
    it "returns a Redis config" do
      expect(config.redis).to be_a(Wayfarer::Config::Redis)
    end
  end

  describe "#selenium" do
    it "returns a Selenium config" do
      expect(config.selenium).to be_a(Wayfarer::Config::Selenium)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wayfarer-0.4.6 spec/config/root_spec.rb
wayfarer-0.4.5 spec/config/root_spec.rb
wayfarer-0.4.4 spec/config/root_spec.rb
wayfarer-0.4.3 spec/config/root_spec.rb
wayfarer-0.4.2 spec/config/root_spec.rb
wayfarer-0.4.1 spec/config/root_spec.rb