File: check_clean_slate_spec.rb

package info (click to toggle)
ruby-mongo 2.21.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,764 kB
  • sloc: ruby: 108,806; makefile: 5; sh: 2
file content (19 lines) | stat: -rw-r--r-- 478 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true
# rubocop:todo all

require 'lite_spec_helper'

# This test can be used to manually verify that there are no leaked
# background threads - execute it after executing another test (in the same
# rspec run) that is suspected to leak background threads, such as by
# running:
#
# rspec your_spec.rb spec/integration/check_clean_slate_spec.rb

describe 'Check clean slate' do
  clean_slate_for_all_if_possible

  it 'checks' do
    # Nothing
  end
end