summaryrefslogtreecommitdiff
path: root/spec/features/protected_tags_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Make protected tags spec the same for CE and EEYorick Peterse2019-07-291-0/+6
| | | | | | | 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.
* Add frozen_string_literal to spec/featuresThong Kuah2019-07-261-0/+2
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Extract EE specific tests for protected branches/tagsOswaldo Ferreira2019-04-251-7/+6
| | | | | | | 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.
* Enable Capybara/FeatureMethods copWinnie Hellmann2018-07-051-1/+1
|
* Resolve "Protected branches count is wrong when a wildcard includes several ↵Jan2018-04-041-1/+4
| | | | protected branches"
* Replaces `tag: true` into `:tag` in the specsJacopo2017-10-071-1/+1
| | | | | | 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.
* Fix 'Projected tags' typo in protected_tags_spec.rbjej-fix-protected-tags-typoJames Edwards-Jones2017-08-151-1/+1
|
* Remove superfluous type defs in specsKeifer Furzland2017-07-271-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Auto-correct ProjectPathHelper violationsRobert Speicher2017-07-061-7/+7
|
* Change gitlab_sign_in to sign_in where possibleRobert Speicher2017-06-291-1/+1
|
* Change `login_as` uses to `gitlab_sign_in`Robert Speicher2017-06-191-1/+1
|
* Correct RSpec/SingleLineHook cop offensesRobert Speicher2017-06-141-1/+3
|
* Clean import of shared examples for protected branches/tagsAlejandro Rodríguez2017-05-161-1/+0
|
* Try waiting for previous dropdown to definitly close before going to clickLuke "Jared" Bennett2017-05-031-0/+1
|
* Merge branch 'jacopo-beschi/gitlab-ce-29712-unnecessary-wait-for-ajax'Rémy Coutable2017-04-241-2/+0
|\ | | | | | | | | | | See merge request !10567 Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo2017-04-211-2/+0
| | | | | | | | | | Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
* | Use `:empty_project` where possible in top-level feature specsrs-empty-project-featuresRobert Speicher2017-04-201-1/+1
|/
* Added ProtectedTags#show pageJames Edwards-Jones2017-03-311-94/+94
| | | Uncommented protected tags feature specs copied from protected branches
* Protected tags copy/paste from protected branchesJames Edwards-Jones2017-03-311-0/+94
Should provide basic CRUD backend for frontend to work from. Doesn’t include frontend, API, or the internal API used from gitlab-shell