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
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-04-20Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2020-04-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-28Remove Rubocop::SpecHelper fileVitali Tatarintev
2019-08-28Refactor BeSuccessMatcher specs for readabilityVitali Tatarintev
2019-08-28Utilize Rubocop's Include for BeSuccessMatcherVitali Tatarintev
Use Rubocop's Include instead of manually checking the matcher in controllers specs.
2019-08-28Add support of not_to/to_not to BeSuccessMatcherVitali Tatarintev
BeSuccessMatcher now supports following examples: ``` expect(response).to be_success expect(response).to_not be_success expect(response).not_to be_success is_expected.to be_success is_expected.to_not be_success is_expected.not_to be_success ```
2019-08-28Replace double quotes with single quotesVitali Tatarintev
2019-08-28Enable frozen string literalVitali Tatarintev
2019-08-28Autocorrect `be_success` to `be_successful`Vitali Tatarintev
2019-08-28Add Rubocop check to avoid using `be_success`Vitali Tatarintev
Prevent using `be_success` call in controller specs to avoid getting following 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. ```
2019-08-26Utilize RuboCop's Include/Exclude configPeter Leitzen
Stop checking the file location programmatically.
2019-08-01Add RSpec/TopLevelDescribePath copSean McGivern
The RSpec/FilePath cop checks that a spec file's path is correct, but only if the file describes a constant. We want to check, for any file with a top-level `describe`, whether the file path ends in `_spec.rb`. We don't care what comes before that; just that it will be executed by RSpec at all.
2018-04-06Introduce a new FactoriesInMigrationSpecs copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-22Use gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-18Add a new RSpec::EnvAssignment cop to prevent assigning to ENV in specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
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-06-15Require rubocop-rspec in the correct locationRobert Speicher
Resolves the `codeclimate` CI failure
2017-06-14Add a custom RSpec/SingleLineHook copRobert Speicher
This cop adds an offense when `before`, `after`, or `around` are used as single-line blocks.