Sha256: cc6dc3ea8e34ad98588764778c529f6cc041b8da5957d2abb94e09f98ea20ac9

Contents?: true

Size: 316 Bytes

Versions: 9

Compression:

Stored size: 316 Bytes

Contents

# encoding: utf-8
require 'spec_helper'

describe Grape::Exceptions::UnknownOptions do
  describe "#message" do
    let(:error) do
      described_class.new([:a, :b])
    end

    it "contains the problem in the message" do
      error.message.should include(
        "unknown options: "
      )
    end

  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
grape-0.7.0 spec/grape/exceptions/unknown_options_spec.rb
grape-0.6.1 spec/grape/exceptions/unknown_options_spec.rb
grape-0.6.0 spec/grape/exceptions/unknown_options_spec.rb
grape-0.5.0 spec/grape/exceptions/unknown_options_spec.rb
grape-0.4.1 spec/grape/exceptions/unknown_options_spec.rb
grape-0.4.0 spec/grape/exceptions/unknown_options_spec.rb
grape-0.3.2 spec/grape/exceptions/unknown_options_spec.rb
grape-0.3.1 spec/grape/exceptions/unknown_options_spec.rb
grape-0.3.0 spec/grape/exceptions/unknown_options_spec.rb