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
fe461952
Commit
fe461952
authored
May 16, 2012
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Specs] Minor clean up and cosmetic fixes.
parent
9323fbac
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
22 deletions
+20
-22
install_spec.rb
spec/functional/command/install_spec.rb
+9
-1
integration_spec.rb
spec/integration_spec.rb
+2
-2
command_spec.rb
spec/unit/command_spec.rb
+0
-9
installer_spec.rb
spec/unit/installer_spec.rb
+2
-5
platform_spec.rb
spec/unit/platform_spec.rb
+7
-5
No files found.
spec/
unit/command/install_command
_spec.rb
→
spec/
functional/command/install
_spec.rb
View file @
fe461952
require
File
.
expand_path
(
'../../../spec_helper'
,
__FILE__
)
require
File
.
expand_path
(
'../../../spec_helper'
,
__FILE__
)
describe
"Pod::Command::Install"
do
describe
"Pod::Command::Install"
do
extend
SpecHelper
::
Command
extend
SpecHelper
::
TemporaryDirectory
extend
SpecHelper
::
TemporaryRepos
it
"should include instructions on how to reference the xcode project"
do
it
"should include instructions on how to reference the xcode project"
do
Pod
::
Command
::
Install
.
banner
.
should
.
match
%r{xcodeproj 'path/to/XcodeProject'}
Pod
::
Command
::
Install
.
banner
.
should
.
match
%r{xcodeproj 'path/to/XcodeProject'}
end
end
end
it
"tells the user that no Podfile or podspec was found in the current working dir"
do
exception
=
lambda
{
run_command
(
'install'
,
'--no-update'
)
}.
should
.
raise
Pod
::
Informative
exception
.
message
.
should
.
include
"No `Podfile' found in the current working directory."
end
end
spec/integration_spec.rb
View file @
fe461952
...
@@ -69,7 +69,7 @@ else
...
@@ -69,7 +69,7 @@ else
target
=
target_definition
target
=
target_definition
with_xcodebuild_available
do
with_xcodebuild_available
do
Dir
.
chdir
(
config
.
project_pods_root
)
do
Dir
.
chdir
(
config
.
project_pods_root
)
do
p
uts
"
\n
[!] Compiling
#{
target
.
label
}
static library...
"
p
rint
"[!] Compiling
#{
target
.
label
}
...
\r
"
should_successfully_perform
"xcodebuild -target '
#{
target
.
label
}
'"
should_successfully_perform
"xcodebuild -target '
#{
target
.
label
}
'"
lib_path
=
config
.
project_pods_root
+
"build/Release
#{
'-iphoneos'
if
target
.
platform
==
:ios
}
"
+
target
.
lib_name
lib_path
=
config
.
project_pods_root
+
"build/Release
#{
'-iphoneos'
if
target
.
platform
==
:ios
}
"
+
target
.
lib_name
`lipo -info '
#{
lib_path
}
'`
.
should
.
include
"architecture:
#{
target
.
platform
==
:ios
?
'armv7'
:
'x86_64'
}
"
`lipo -info '
#{
lib_path
}
'`
.
should
.
include
"architecture:
#{
target
.
platform
==
:ios
?
'armv7'
:
'x86_64'
}
"
...
@@ -117,7 +117,7 @@ else
...
@@ -117,7 +117,7 @@ else
}
}
end
end
it
"install a dummy source file"
do
it
"install
s
a dummy source file"
do
create_config!
create_config!
podfile
=
Pod
::
Podfile
.
new
do
podfile
=
Pod
::
Podfile
.
new
do
self
.
platform
:ios
self
.
platform
:ios
...
...
spec/unit/command_spec.rb
View file @
fe461952
...
@@ -15,12 +15,3 @@ describe "Pod::Command::Repo" do
...
@@ -15,12 +15,3 @@ describe "Pod::Command::Repo" do
end
end
end
end
describe
"Pod::Command::Install"
do
it
"tells the user that no Podfile or podspec was found in the current working dir"
do
command
=
Pod
::
Command
::
Install
.
new
(
argv
)
exception
=
lambda
{
command
.
run
}.
should
.
raise
Pod
::
Informative
exception
.
message
.
should
.
include
"No `Podfile' found in the current working directory."
end
end
spec/unit/installer_spec.rb
View file @
fe461952
...
@@ -2,18 +2,15 @@ require File.expand_path('../../spec_helper', __FILE__)
...
@@ -2,18 +2,15 @@ require File.expand_path('../../spec_helper', __FILE__)
describe
"Pod::Installer"
do
describe
"Pod::Installer"
do
before
do
before
do
@config_before
=
config
Pod
::
Config
.
instance
=
nil
config
.
silent
=
true
config
.
repos_dir
=
fixture
(
'spec-repos'
)
config
.
repos_dir
=
fixture
(
'spec-repos'
)
config
.
project_pods_root
=
fixture
(
'integration'
)
config
.
project_pods_root
=
fixture
(
'integration'
)
end
end
after
do
after
do
Pod
::
Config
.
instance
=
@config_before
config
.
repos_dir
=
SpecHelper
.
tmp_repos_path
end
end
describe
"
, by default,
"
do
describe
"
by default
"
do
before
do
before
do
podfile
=
Pod
::
Podfile
.
new
do
podfile
=
Pod
::
Podfile
.
new
do
platform
:ios
platform
:ios
...
...
spec/unit/platform_spec.rb
View file @
fe461952
require
File
.
expand_path
(
'../../spec_helper'
,
__FILE__
)
require
File
.
expand_path
(
'../../spec_helper'
,
__FILE__
)
describe
Pod
::
Platform
do
describe
Pod
::
Platform
do
describe
"by default"
do
it
"returns a new Platform instance"
do
it
"returns a new Platform instance"
do
Pod
::
Platform
.
ios
.
should
==
Pod
::
Platform
.
new
(
:ios
)
Pod
::
Platform
.
ios
.
should
==
Pod
::
Platform
.
new
(
:ios
)
Pod
::
Platform
.
osx
.
should
==
Pod
::
Platform
.
new
(
:osx
)
Pod
::
Platform
.
osx
.
should
==
Pod
::
Platform
.
new
(
:osx
)
...
@@ -56,9 +57,9 @@ describe Pod::Platform do
...
@@ -56,9 +57,9 @@ describe Pod::Platform do
p
.
deployment_target
=
Pod
::
Version
.
new
(
'4.0.0'
)
p
.
deployment_target
=
Pod
::
Version
.
new
(
'4.0.0'
)
p
.
deployment_target
.
should
==
Pod
::
Version
.
new
(
'4.0.0'
)
p
.
deployment_target
.
should
==
Pod
::
Version
.
new
(
'4.0.0'
)
end
end
end
end
describe
"Pod::Platform
with a nil value"
do
describe
"
with a nil value"
do
before
do
before
do
@platform
=
Pod
::
Platform
.
new
(
nil
)
@platform
=
Pod
::
Platform
.
new
(
nil
)
end
end
...
@@ -66,10 +67,10 @@ describe "Pod::Platform with a nil value" do
...
@@ -66,10 +67,10 @@ describe "Pod::Platform with a nil value" do
it
"behaves like a nil object"
do
it
"behaves like a nil object"
do
@platform
.
should
.
be
.
nil
@platform
.
should
.
be
.
nil
end
end
end
end
describe
"Pod::Platform#supports?
"
do
describe
"regarding supporting platforms
"
do
it
"supports another platform i
s with the same operating system"
do
it
"supports platform
s with the same operating system"
do
p1
=
Pod
::
Platform
.
new
(
:ios
)
p1
=
Pod
::
Platform
.
new
(
:ios
)
p2
=
Pod
::
Platform
.
new
(
:ios
)
p2
=
Pod
::
Platform
.
new
(
:ios
)
p1
.
should
.
supports?
(
p2
)
p1
.
should
.
supports?
(
p2
)
...
@@ -104,4 +105,5 @@ describe "Pod::Platform#supports?" do
...
@@ -104,4 +105,5 @@ describe "Pod::Platform#supports?" do
p2
=
Pod
::
Platform
.
new
(
:osx
)
p2
=
Pod
::
Platform
.
new
(
:osx
)
p1
.
should
.
not
.
supports?
(
p2
)
p1
.
should
.
not
.
supports?
(
p2
)
end
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