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
473512e1
Commit
473512e1
authored
9 years ago
by
Xu Cheng
Browse files
Options
Downloads
Patches
Plain Diff
test_software_spec: add full_name
parent
3ac2b7b1
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/test_software_spec.rb
+7
-4
7 additions, 4 deletions
Library/Homebrew/test/test_software_spec.rb
with
7 additions
and
4 deletions
Library/Homebrew/test/test_software_spec.rb
+
7
−
4
View file @
473512e1
...
...
@@ -19,19 +19,22 @@ class SoftwareSpecTests < Homebrew::TestCase
end
def
test_raises_when_accessing_missing_resources
@spec
.
owner
=
Class
.
new
{
def
name
;
"test"
;
end
}.
new
@spec
.
owner
=
Class
.
new
do
def
name
;
"test"
;
end
def
full_name
;
"test"
;
end
end
.
new
assert_raises
(
ResourceMissingError
)
{
@spec
.
resource
(
'foo'
)
}
end
def
test_set_owner
owner
=
stub
(
:name
=>
'some_name'
)
owner
=
stub
(
:name
=>
'some_name'
,
:full_name
=>
'some_name'
)
@spec
.
owner
=
owner
assert_equal
owner
,
@spec
.
owner
end
def
test_resource_owner
@spec
.
resource
(
'foo'
)
{
url
'foo-1.0'
}
@spec
.
owner
=
stub
(
:name
=>
'some_name'
)
@spec
.
owner
=
stub
(
:name
=>
'some_name'
,
:full_name
=>
'some_name'
)
assert_equal
'some_name'
,
@spec
.
name
@spec
.
resources
.
each_value
{
|
r
|
assert_equal
@spec
,
r
.
owner
}
end
...
...
@@ -39,7 +42,7 @@ class SoftwareSpecTests < Homebrew::TestCase
def
test_resource_without_version_receives_owners_version
@spec
.
url
(
'foo-42'
)
@spec
.
resource
(
'bar'
)
{
url
'bar'
}
@spec
.
owner
=
stub
(
:name
=>
'some_name'
)
@spec
.
owner
=
stub
(
:name
=>
'some_name'
,
:full_name
=>
'some_name'
)
assert_version_equal
'42'
,
@spec
.
resource
(
'bar'
).
version
end
...
...
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