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