Commit 003ee24e authored by Peter M. Goldstein's avatar Peter M. Goldstein

Fix errant apostrophes.

parent 71f4eb17
......@@ -8,7 +8,7 @@ module Pod
@pod = LocalPod.new(fixture_spec('banana-lib/BananaLib.podspec'), temporary_sandbox, Platform.ios)
end
it "check's out a specific commit" do
it "checks out a specific commit" do
@pod.top_specification.stubs(:source).returns(
:git => fixture('banana-lib'), :commit => 'fd56054'
)
......@@ -18,7 +18,7 @@ module Pod
(@pod.root + 'README').read.strip.should == 'first commit'
end
it "check's out a specific branch" do
it "checks out a specific branch" do
@pod.top_specification.stubs(:source).returns(
:git => fixture('banana-lib'), :branch => 'topicbranch'
)
......@@ -28,7 +28,7 @@ module Pod
(@pod.root + 'README').read.strip.should == 'topicbranch'
end
it "check's out a specific tag" do
it "checks out a specific tag" do
@pod.top_specification.stubs(:source).returns(
:git => fixture('banana-lib'), :tag => 'v1.0'
)
......
......@@ -7,7 +7,7 @@ module Pod
end
describe "for Mercurial" do
it "check's out a specific revision" do
it "checks out a specific revision" do
@pod.top_specification.stubs(:source).returns(
:hg => fixture('mercurial-repo'), :revision => '46198bb3af96'
)
......@@ -27,7 +27,7 @@ module Pod
describe "for Subversion" do
it "check's out a specific revision" do
it "checks out a specific revision" do
@pod.top_specification.stubs(:source).returns(
:svn => "file://#{fixture('subversion-repo')}", :revision => '1'
)
......@@ -36,7 +36,7 @@ module Pod
(@pod.root + 'README').read.strip.should == 'first commit'
end
it "check's out a specific tag" do
it "checks out a specific tag" do
@pod.top_specification.stubs(:source).returns(
:svn => "file://#{fixture('subversion-repo')}", :tag => 'tag-1'
)
......@@ -45,7 +45,7 @@ module Pod
(@pod.root + 'README').read.strip.should == 'tag 1'
end
it "check's out the head version" do
it "checks out the head version" do
@pod.top_specification.stubs(:source).returns(
:svn => "file://#{fixture('subversion-repo')}", :revision => '1'
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment