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
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_with` uses to `gitlab_sign_in`Robert Speicher
Change single `login_via` use to `gitlab_sign_in_via`
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
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-15Display full project name with namespace upon deletionMark Fletcher
* Removes ambiguity when two projects exist with the same name
2017-03-06Use native unicode emojisEric Eastwood
- gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
2016-09-28Allow Member.add_user to handle access requestersRémy Coutable
Changes include: - Ensure Member.add_user is not called directly when not necessary - New GroupMember.add_users_to_group to have the same abstraction level as for Project - Refactor Member.add_user to take a source instead of an array of members - Fix Rubocop offenses - Always use Project#add_user instead of project.team.add_user - Factorize users addition as members in Member.add_users_to_source - Make access_level a keyword argument in GroupMember.add_users_to_group and ProjectMember.add_users_to_projects - Destroy any requester before adding them as a member - Improve the way we handle access requesters in Member.add_user Instead of removing the requester and creating a new member, we now simply accepts their access request. This way, they will receive a "access request granted" email. - Fix error that was previously silently ignored - Stop raising when access level is invalid in Member, let Rails validation do their work Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-09-14add test about flash alertubudzisz
add tests with dependent destroy add tests with dependent destroy add tests add tests to projects spec update it title and remove let update it title and remove let remove changes after rebase remove changes after rebase update changelog
2016-08-23Fix file links on project page Files viewSean McGivern
2016-08-09fixes part1 of files to start using active tensetiagonbotelho
2016-06-20Fix and remove duplicate specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-04-26Project title dropdown testsPhil Hughes
Added a test for when on an issue page to check whether the project dropdown links will still work See !3870
2016-04-12Updated testsPhil Hughes
2016-01-30added feature testPhil Hughes
2016-01-04rempves tests for "you have master access" textJacob Schatz
2015-12-29adds proper `it` for multi line. adds `find` with correct id for button.Jacob Schatz
2015-12-28fixes tests failingJacob Schatz
2015-12-22Fix and test leave project displayDrew Blessing
2015-10-18Fix specDouwe Maan
2015-10-14Made suggested content changes based on MR ReviewHan Loong Liauw
Changed the authentication method for removing fork through API Reflected changes to new auth method in API specs
2015-10-13Adds ability to remove the forked relationshipHan Loong Liauw
This was previously possible through the API but can now be done through the project#edit settings screen if the current user is the owner of the project. Update changelog
2015-10-07Allow removing of project without confirmation when JavaScript is disabledStan Hu
Closes #2485
2015-08-06Fix specDouwe Maan
2015-07-07Add `feature` tag to feature specsRobert Speicher
Not to be confused with the RSpec `type: :feature` tag, this tag is used by the `spec:feature` Rake task for filtering/grouping specs.
2015-06-03Merge branch 'repo-remove'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/projects_spec.rb
2015-06-03Fix tests and increase delay time before remove repositoryDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-02Add feature specs for Project and Group description renderingRobert Speicher
2015-02-14Upgrade to Rails 4.1.9Vinnie Okada
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
2014-10-28Fix testsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-28Merge branch 'api-project-delete' of https://gitlab.com/mr-vinn/gitlab-ce ↵Dmitriy Zaporozhets
into mr-vinn/gitlab-ce-api-project-delete Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/projects_spec.rb
2014-10-08Improve project remove specDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-08Add option to keep repo on project deleteVinnie Okada
Update the project API controller to use `Projects::DestroyService` instead of calling `Project#destroy` directly. Also add an optional parameter, `:keep_repo`, that allows a project to be deleted without deleting the repository, wiki, and satellite from disk.
2014-06-17Remove rails observers from applicationDmitriy Zaporozhets
2014-04-13Split feature tests out to different build jobJeroen van Baarsen
2013-07-18Merge Request on forked projectsIzaak Alpert
The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
2013-04-11Specs refactoring to reduce test time. Disabled observers by default for specsDmitriy Zaporozhets
2013-03-19Fix spec errors.Sato Hiroyuki
2013-02-21move capybara scenarios to spec/featuresDmitriy Zaporozhets