summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/commit_controller_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2023-04-061-16/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2023-03-221-0/+31
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2023-03-131-3/+78
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2023-02-171-101/+26
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2023-01-311-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2022-07-291-0/+16
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2022-07-251-1/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2022-04-111-0/+16
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2022-03-211-0/+30
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2022-02-011-0/+12
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2021-06-301-1/+21
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2021-06-011-12/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2021-04-121-0/+98
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2021-03-151-2/+24
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-06-031-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-281-6/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-021-3/+4
|
* Change `be_success` to `be_successful` in specsfix-deprecation-warnings-change-success-to-successfulVitali Tatarintev2019-08-191-5/+5
| | | | | | | | | | Fixes deprecation warning: ``` DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0. Please use successful? as provided by Rack::Response::Helpers. ```
* Cleanup usages of `JSON.parse` in specsPeter Leitzen2019-07-161-2/+2
| | | | Prefer `json_response` where applicable.
* Add some frozen string to spec/**/*.rbgfyoung2019-04-151-0/+2
| | | | | | | | | | Adds frozen string to the following: * spec/bin/**/*.rb * spec/config/**/*.rb * spec/controllers/**/*.rb xref https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Enable the Layout/ExtraSpacing cop56392-enable-the-layout-extraspacing-copRémy Coutable2019-01-241-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Update specs to rails5 formatblackst0ne-convert-specs-rails5-styleblackst0ne2018-12-191-42/+64
| | | | | | | | | | Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
* Adds pagination to pipelines table in merge request page28249-add-paginationFilipa Lacerda2018-10-311-0/+1
|
* Add target branch to cherry pick confirmation messageGeorge Andrinopoulos2018-08-191-1/+1
|
* Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao2018-07-111-1/+1
|
* Workhorse to send raw diff and patch for commitsZeger-Jan van de Weg2018-05-161-28/+5
| | | | | | | | | | | | | Prior to this change, this was done through unicorn. In theory this could time out. Workhorse has been sending these raw patches and diffs for a long time and is stable in doing so. Added bonus is the fact that `Commit#to_patch` can be removed. `Commit#to_diff` too, which closes https://gitlab.com/gitlab-org/gitaly/issues/324 Closes https://gitlab.com/gitlab-org/gitaly/issues/1196
* adding view and feature specsmicael.bergeron2017-12-071-1/+2
|
* add support for the commit reference filtermicael.bergeron2017-12-071-1/+1
|
* diff notes created in merge request on a commit have the right contextmicael.bergeron2017-12-071-0/+15
| | | | add a spec for commit merge request diff notes
* Batchload blobs for diff generationZeger-Jan van de Weg2017-11-211-3/+3
| | | | | | | | | | | | | | | | | | After installing a new gem, batch-loader, a construct can be used to queue data to be fetched in bulk. The gem was also introduced in both gitlab-org/gitlab-ce!14680 and gitlab-org/gitlab-ce!14846, but those mrs are not merged yet. For the generation of diffs, both the old blob and the new blob need to be loaded. This for every file in the diff, too. Now we collect all these so we do 1 fetch. Three `.allow_n_plus_1_calls` have been removed, which I expect to be valid, but this needs to be confirmed by a full CI run. Possibly closes: - https://gitlab.com/gitlab-org/gitlab-ce/issues/37445 - https://gitlab.com/gitlab-org/gitlab-ce/issues/37599 - https://gitlab.com/gitlab-org/gitlab-ce/issues/37431
* Merge branch '37824-many-branches-lock-server' into 'master'Annabel Dunstone Gray2017-11-071-4/+22
|\ | | | | | | | | | | | | Project with many branches can lock server running "git branch --contains XXX" Closes #37824 See merge request gitlab-org/gitlab-ce!14812
| * implemented using an ivar, and added specsBrett Walker2017-10-131-4/+22
| |
* | Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo2017-10-201-6/+6
|/
* Update Pipeline's badge count in Merge Request and Commits view to match ↵Filipa Lacerda2017-07-141-1/+2
| | | | real-time content
* Create and use project path helpers that only need a project, no namespaceDouwe Maan2017-07-051-4/+4
|
* Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon2017-06-211-2/+2
|
* Correct RSpec/SingleLineHook cop offensesRobert Speicher2017-06-141-2/+6
|
* Satisfy RubocopDouwe Maan2017-04-051-1/+1
|
* Add option to start a new discussion on an MRDouwe Maan2017-04-051-1/+1
|
* Fix cherry-picking or reverting through an MRDouwe Maan2017-03-021-6/+6
|
* Use Namespace#full_path instead of #path where appropriatedm-more-namespace-full-pathDouwe Maan2017-02-231-26/+26
|
* Add controller tests for commit pipelines endpointGrzegorz Bizon2017-01-271-5/+19
|
* Use `empty_project` where possible in controller specsrs-empty_project-controllersRobert Speicher2017-01-251-1/+1
|
* Add sorting pipeline for a commitTakuya Noguchi2017-01-191-3/+35
|
* refactors tests because of gitlab-test repository changes20708-new-branch-is-immediatelly-tagged-as-mergedtiagonbotelho2016-10-111-6/+10
|
* fixes part1 of files to start using active tensetiagonbotelho2016-08-091-13/+13
|
* Move to Gitlab::Diff::FileCollectionPaco Guzman2016-08-031-3/+3
| | | Instead calling diff_collection.count use diff_collection.size which is cache on the diff_collection
* Cache highlighted diff lines for merge requestsPaco Guzman2016-08-031-6/+7
| | | | Introducing the concept of SafeDiffs which relates diffs with UI highlighting.
* Fix failing CommitController spec17073-tagscontroller-index-is-terrible-response-time-goes-up-to-5-secondsAlejandro Rodríguez2016-07-281-9/+0
|
* Support renames in diff_for_path actionsSean McGivern2016-07-111-5/+5
|