该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 3月 18, 2024
-
-
由 Dylan Griffith 创作于
In real usage if you call `ENV.fetch('NON_EXISTENT_KEY')` it will raise a `KeyError`. But our previously implementation of of `stub_env` with `nil` is causing it to return `nil` rather than raising an error. This can cause us to write tests that don't match the actual production behaviour. We might forget to rescue the exception in a certain place or we also may not be able to write a test case for the expected behaviour. ``` irb(main):001> ENV.fetch('NON_EXISTENT_KEY') (irb):1:in `fetch': key not found: "NON_EXISTENT_KEY" (KeyError) irb(main):002> ENV['NON_EXISTENT_KEY'] = nil => nil irb(main):003> ENV.fetch('NON_EXISTENT_KEY') (irb):3:in `fetch': key not found: "NON_EXISTENT_KEY" (KeyError) ```
-
- 11月 22, 2023
-
-
由 Kamil Trzciński 创作于
-
由 Kamil Trzciński 创作于
This moves two spec helpers into `gitlab-rspec`.
-
- 10月 20, 2023
-
-
由 Dzmitry Meshcharakou 创作于
-
- 8月 02, 2023
-
-
由 Alina Mihaila 创作于
-
- 7月 28, 2023
-
-
由 Jennifer Li 创作于
-
- 7月 27, 2023
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 7月 06, 2023
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 7月 05, 2023
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 6月 30, 2023
-
-
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 6月 27, 2023
-
-
由 Stan Hu 创作于
Revert !124615 See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/124640 Merged-by:
Stan Hu <stanhu@gmail.com> Approved-by:
Stan Hu <stanhu@gmail.com> Co-authored-by:
Nao Hashizume <nhashizume@gitlab.com>
-
由 Nao Hashizume 创作于
This reverts merge request !124615
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
由 Kamil Trzciński 创作于
The purpose of this Gem is to move all `Gitlab::Utils` code into the Gem, and use this for all common functions that are not monolith specific.
-
- 6月 26, 2023
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
由 Kamil Trzciński 创作于
The purpose of this Gem is to move all `Gitlab::Utils` code into the Gem, and use this for all common functions that are not monolith specific.
-
- 6月 20, 2023
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 6月 19, 2023
-
-
由 Kamil Trzciński 创作于
This gem is supposed to contain all source code required to configure GitLab specific rspec environment. Changelog: added
-