rspec-graphql_types 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73d57da52abe0701765d0a4e82cc715122ea1873b0a338165922dd4cc5850524
4
- data.tar.gz: 758b9c0bbeaee55f163da3c37afa82ea39a39895e251b451e81077682eecccd4
3
+ metadata.gz: 71d9e4107a617bb6b00c6510139162fd5334b56bbc2bdba1969f8ea30570c204
4
+ data.tar.gz: 8a067ac01ce90d84db19807c907b95d40c1576b2a47ebdad96b0a88a4b6a7fa6
5
5
  SHA512:
6
- metadata.gz: 6998816e11ead713e01ca10677e45f58e101e615b165ccda2c385c079f0348fa9b1949d54bfee287ebab8c2271d685cdc54319f414a0740dd2bf7445dda01028
7
- data.tar.gz: 2e724d24dc3e622c1ca98901b3bf33031fab226041053e5327e5234519dd2670bde18e037ebdd06cb91897b6bf39c2e0a87bf005966dfa5183b65734faff8028
6
+ metadata.gz: ab7ebe43158db7914e77c84760b7f89caf3e943d1453abd9c0463ad03302f688c44a514b904e72b1f080f15901000f593c6bc53c1d1adda48a279e50cfa2b077
7
+ data.tar.gz: 7a7d5f28f2df92b424a27378800aed6c8349445aff0325b626facce4699d27522471126ab51e39f37556d897c6ccfb68680d8b47ea7e3d17ba0548279666b969
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rspec
4
4
  module GraphQLTypes
5
- VERSION = "1.0.4"
5
+ VERSION = "1.0.5"
6
6
  end
7
7
  end
@@ -23,7 +23,8 @@ module Rspec
23
23
  end
24
24
 
25
25
  included do
26
- let(:context) { GraphQL::Query::Context.new(query: TestQuery.new, values: nil, object: nil, schema: GraphQLTypes.schema_class.new) }
26
+ let(:context_values) { nil }
27
+ let(:context) { GraphQL::Query::Context.new(query: TestQuery.new, values: context_values, object: nil, schema: GraphQLTypes.schema_class.new) }
27
28
  end
28
29
 
29
30
  def graphql_object(type, value)
@@ -55,6 +56,7 @@ module Rspec
55
56
  value = context.dataloader.run_isolated do
56
57
  graphql_field.resolve(object, arguments, context)
57
58
  end
59
+ raise value if value.is_a?(Exception)
58
60
  graphql_object(graphql_field.type, value)
59
61
  end
60
62
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-graphql_types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tejas Dinkar
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-25 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport