Commit d2e7cdcd authored by Eloy Duran's avatar Eloy Duran

Fix repo max version spec work for the foreseeable future.

parent 03e62779
...@@ -19,11 +19,11 @@ describe "Pod::Command::Repo" do ...@@ -19,11 +19,11 @@ describe "Pod::Command::Repo" do
end end
it "supports a repo with a compatible maximum version" do it "supports a repo with a compatible maximum version" do
versions = { 'max' => '0.7' } versions = { 'max' => '0.999' }
@command.class.send(:is_compatilbe, versions).should == true @command.class.send(:is_compatilbe, versions).should == true
end end
it "doesn't supports a repo with a compatible maximum version" do it "doesn't support a repo with an incompatible maximum version" do
versions = { 'max' => '0.5' } versions = { 'max' => '0.5' }
@command.class.send(:is_compatilbe, versions).should == false @command.class.send(:is_compatilbe, versions).should == false
end end
......
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