summaryrefslogtreecommitdiff
path: root/spec/support/helpers/project_forks_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-191-2/+14
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-121-1/+1
|
* Stub DetectRepositoryLanguagesWorker for all testsIgor2019-09-031-1/+1
| | | | | It performs an expensive operation, but isn't required in most of tests
* Add frozen_string_literal to spec/supportThong Kuah2019-07-251-0/+2
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Whitelist Gitaly N+1 for forking in testsNick Thomas2019-05-091-6/+17
| | | | | | | | | | | This helper is right on the limit of the number of calls being made. When the request store is enabled, and Sidekiq is running in inline mode, just a couple of additional actions result in it being pushed over the line. The operation is entirely artificial, since in reality we'd perform these requests in multiple separate processes, so just whitelist it for now.
* Fix typos in comments and specsGeorge Tsiolis2018-11-011-1/+1
|
* Remove the `ForkedProjectLink` modelBob Van Landuyt2018-10-191-1/+1
| | | | | | | | | | | | | | This removes the `ForkedProjectLink` model that has been replaced by the `ForkNetworkMember` and `ForkNetwork` combination. All existing relations have been adjusted to use these new models. The `forked_project_link` table has been dropped. The "Forks" count on the admin dashboard has been updated to count all `ForkNetworkMember` rows and deduct the number of `ForkNetwork` rows. This is because now the "root-project" of a fork network also has a `ForkNetworkMember` row. This count could become inaccurate when the root of a fork network is deleted.
* Move spec helpers/matchers/shared examples/contexts to their relevant folderRémy Coutable2018-04-231-0/+54
Signed-off-by: Rémy Coutable <remy@rymai.me>