Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-03-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-01-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-29Make protected tags spec the same for CE and EEYorick Peterse
This changes a protected tags feature spec so that it is the same in both CE and EE. This requires the use of a `if Gitlab.ee?` check, as the added lines don't work in CE but do work in EE. Removing them entirely in turn breaks the EE spec.
2019-07-26Add frozen_string_literal to spec/featuresThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-04-25Extract EE specific tests for protected branches/tagsOswaldo Ferreira
We have the spec files containing EE specific code for spec/features/protected_branches_spec.rb and spec/features/protected_tags_spec.rb. This commit deletes / extracts the CE part of it.
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-04-04Resolve "Protected branches count is wrong when a wildcard includes several ↵Jan
protected branches"
2017-10-07Replaces `tag: true` into `:tag` in the specsJacopo
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
2017-08-15Fix 'Projected tags' typo in protected_tags_spec.rbJames Edwards-Jones
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-05-16Clean import of shared examples for protected branches/tagsAlejandro Rodríguez
2017-05-03Try waiting for previous dropdown to definitly close before going to clickLuke "Jared" Bennett
2017-04-24Merge branch 'jacopo-beschi/gitlab-ce-29712-unnecessary-wait-for-ajax'Rémy Coutable
See merge request !10567 Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-04-21Use `:empty_project` where possible in top-level feature specsRobert Speicher
2017-03-31Added ProtectedTags#show pageJames Edwards-Jones
Uncommented protected tags feature specs copied from protected branches
2017-03-31Protected tags copy/paste from protected branchesJames Edwards-Jones
Should provide basic CRUD backend for frontend to work from. Doesn’t include frontend, API, or the internal API used from gitlab-shell