Sha256: df52368bdbbe7a2d387395b2e3a2f251a339d49c5f32b44ed357bbd09afe1da1

Contents?: true

Size: 328 Bytes

Versions: 16

Compression:

Stored size: 328 Bytes

Contents

# encoding: utf-8
require 'spec_helper'

describe Grape::Exceptions::MissingOption do
  describe '#message' do
    let(:error) do
      described_class.new(:path)
    end

    it 'contains the problem in the message' do
      expect(error.message).to include(
        'You must specify :path options.'
      )
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
grape-1.0.1 spec/grape/exceptions/missing_option_spec.rb
grape-1.0.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.19.2 spec/grape/exceptions/missing_option_spec.rb
grape-0.19.1 spec/grape/exceptions/missing_option_spec.rb
grape-0.19.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.18.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.17.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.16.2 spec/grape/exceptions/missing_option_spec.rb
grape-0.16.1 spec/grape/exceptions/missing_option_spec.rb
grape-0.15.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.14.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.13.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.12.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.11.0 spec/grape/exceptions/missing_option_spec.rb
grape-0.10.1 spec/grape/exceptions/missing_option_spec.rb
grape-0.10.0 spec/grape/exceptions/missing_option_spec.rb