diff options
Diffstat (limited to 'spec/graphql/gitlab_schema_spec.rb')
-rw-r--r-- | spec/graphql/gitlab_schema_spec.rb | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/spec/graphql/gitlab_schema_spec.rb b/spec/graphql/gitlab_schema_spec.rb index 0f21a55f7e9..8960ad91543 100644 --- a/spec/graphql/gitlab_schema_spec.rb +++ b/spec/graphql/gitlab_schema_spec.rb @@ -191,13 +191,17 @@ describe GitlabSchema do context 'for other classes' do # We cannot use an anonymous class here as `GlobalID` expects `.name` not # to return `nil` - class TestGlobalId - include GlobalID::Identification - attr_accessor :id - - def initialize(id) - @id = id + before do + test_global_id = Class.new do + include GlobalID::Identification + attr_accessor :id + + def initialize(id) + @id = id + end end + + stub_const('TestGlobalId', test_global_id) end it 'falls back to a regular find' do |