summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-03-10 03:28:20 +0100
committerRémy Coutable <remy@rymai.me>2017-03-22 19:45:21 +0100
commit645a55f19b71bb951f3ce7c3a7915ce878f82e97 (patch)
treedc14ba7bcf596bf8ded773d31d4760acf6602e88 /Gemfile
parent3574963bc01097da418b62ae6f87d02359f36f12 (diff)
downloadgitlab-ce-645a55f19b71bb951f3ce7c3a7915ce878f82e97.tar.gz
Introduce a new middleware for the test environment that can block requests
The idea is that after each feature spec example, we block all incoming requests at the Rack level, go to the 'about:blank' page, and wait until the current requests reach 0. This should solve the problem where a request would end after database cleaner performed the database truncation. The problem was that a GET request can still lead to records creation (e.g. namespaces or routes). Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 6af27ce0f3e..38158387642 100644
--- a/Gemfile
+++ b/Gemfile
@@ -327,6 +327,7 @@ group :test do
gem 'test_after_commit', '~> 1.1'
gem 'sham_rack', '~> 1.3.6'
gem 'timecop', '~> 0.8.0'
+ gem 'concurrent-ruby', '~> 1.0.5'
end
gem 'octokit', '~> 4.6.2'