Sha256: 0ebe72664733a6e4b6bcf9111cbf127141940ee819fe6ec83978b83b3454962a

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

require "hanami/config"

RSpec.describe Hanami::Config, "#router" do
  let(:config) { described_class.new(app_name: app_name, env: :development) }
  let(:app_name) { "MyApp::app" }

  subject(:router) { config.router }

  context "hanami-router is bundled" do
    it "is a full router configuration" do
      is_expected.to be_an_instance_of(Hanami::Config::Router)

      is_expected.to respond_to(:resolver)
    end

    it "loads the middleware stack" do
      subject

      expect(config.middleware_stack).not_to be_nil
    end

    it "can be finalized" do
      is_expected.to respond_to(:finalize!)
    end
  end

  context "hanami-router is not bundled" do
    before do
      allow(Hanami).to receive(:bundled?).and_call_original
      allow(Hanami).to receive(:bundled?).with("hanami-router").and_return(false)
    end

    it "does not expose any settings" do
      is_expected.to be_an_instance_of(Hanami::Config::NullConfig)
      is_expected.not_to respond_to(:resolver)
    end

    it "can be finalized" do
      is_expected.to respond_to(:finalize!)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hanami-2.2.1 spec/unit/hanami/config/router_spec.rb
hanami-2.2.0 spec/unit/hanami/config/router_spec.rb
hanami-2.2.0.rc1 spec/unit/hanami/config/router_spec.rb
hanami-2.2.0.beta2 spec/unit/hanami/config/router_spec.rb
hanami-2.2.0.beta1 spec/unit/hanami/config/router_spec.rb