Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
31b90465
Commit
31b90465
authored
8 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Use shorter `before` syntax to skip tests.
parent
cf85f757
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/test/spec_helper.rb
+11
-10
11 additions, 10 deletions
Library/Homebrew/test/spec_helper.rb
with
11 additions
and
10 deletions
Library/Homebrew/test/spec_helper.rb
+
11
−
10
View file @
31b90465
...
...
@@ -31,22 +31,23 @@ TEST_DIRECTORIES = [
RSpec
.
configure
do
|
config
|
config
.
order
=
:random
config
.
include
(
Test
::
Helper
::
Shutup
)
config
.
include
(
Test
::
Helper
::
Fixtures
)
config
.
include
(
Test
::
Helper
::
Formula
)
config
.
before
(
:each
)
do
|
example
|
if
example
.
metadata
[
:needs_macos
]
skip
"Not on macOS."
unless
OS
.
mac?
end
if
example
.
metadata
[
:needs_official_cmd_taps
]
skip
"Needs official command Taps."
unless
ENV
[
"HOMEBREW_TEST_OFFICIAL_CMD_TAPS"
]
end
config
.
before
(
:each
,
:needs_official_cmd_taps
)
do
skip
"Needs official command Taps."
unless
ENV
[
"HOMEBREW_TEST_OFFICIAL_CMD_TAPS"
]
end
if
example
.
metadata
[
:needs_python
]
skip
"Python not installed."
unless
which
(
"python"
)
end
config
.
before
(
:each
,
:needs_macos
)
do
skip
"Not on macOS."
unless
OS
.
mac?
end
config
.
before
(
:each
,
:needs_python
)
do
skip
"Python not installed."
unless
which
(
"python"
)
end
config
.
around
(
:each
)
do
|
example
|
begin
TEST_DIRECTORIES
.
each
(
&
:mkpath
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment