Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
62cc825b
Commit
62cc825b
authored
Aug 11, 2014
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Resolver] Clean-up and organize specs
parent
6fea5d49
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
resolver_spec.rb
spec/unit/resolver_spec.rb
+5
-7
No files found.
spec/unit/resolver_spec.rb
View file @
62cc825b
...
...
@@ -195,7 +195,10 @@ module Pod
end
end
# assumes that there are pods for AFNetworking at both version 1.0 and 1.0RC3
#-------------------------------------------------------------------------#
describe
"Pre-release versions"
do
it
"resolves explicitly requested pre-release versions"
do
@podfile
=
Podfile
.
new
do
platform
:ios
,
'6.0'
...
...
@@ -243,7 +246,6 @@ module Pod
specs
.
should
==
[
"AFNetworking (0.10.1)"
]
end
# assumes that there are pods for AFNetworking at both version 1.0 and 1.0RC3
it
"does not resolve to a pre-release version implicitly when using <="
do
@podfile
=
Podfile
.
new
do
platform
:ios
,
'6.0'
...
...
@@ -256,7 +258,6 @@ module Pod
specs
.
should
==
[
"AFNetworking (1.0)"
]
end
# assumes that there are pods for AFNetworking at versions 1.0, 1.0RC3 and 1.2.0
it
"does not resolve to a pre-release version implicitly when using >"
do
@podfile
=
Podfile
.
new
do
platform
:ios
,
'6.0'
...
...
@@ -281,7 +282,6 @@ module Pod
specs
.
should
==
[
"AFNetworking (1.2.1)"
]
end
# assumes that there are pods for AFNetworking at versions 1.0, 1.0RC3 and 1.2.0
it
"does not resolve to a pre-release version implicitly when using ~>"
do
@podfile
=
Podfile
.
new
do
platform
:ios
,
'6.0'
...
...
@@ -293,8 +293,6 @@ module Pod
specs
.
should
!=
[
"AFNetworking (1.0RC3)"
]
specs
.
should
==
[
"AFNetworking (1.2.1)"
]
end
#-------------------------------------------------------------------------#
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment