File: disable-integration-test.patch

package info (click to toggle)
ruby-grape 1.6.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,156 kB
  • sloc: ruby: 25,265; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 502 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: This patch skips test failures..
 since integration tests require a different Gemfile.
Author: Utkarsh Gupta <utkarsh@debian.org>
Forwarded: https://github.com/ruby-grape/grape/issues/2027
Last-Update: 2020-03-24

--- a/spec/integration/multi_json/json_spec.rb
+++ b/spec/integration/multi_json/json_spec.rb
@@ -3,7 +3,7 @@
 require 'spec_helper'
 
 describe Grape::Json do
-  it 'uses multi_json' do
+  xit 'uses multi_json' do
     expect(described_class).to eq(::MultiJson)
   end
 end