Commit 04bb26a7 authored by Fabio Pelosin's avatar Fabio Pelosin

[Specs] Minor fixes.

parent b8784a91
...@@ -22,15 +22,16 @@ describe Pod::Command::Presenter do ...@@ -22,15 +22,16 @@ describe Pod::Command::Presenter do
end end
it "presents the stats of a specification set" do it "presents the stats of a specification set" do
repo = {"forks"=>42, "watchers"=>318} repo = { "forks"=>42, "watchers"=>318, "pushed_at"=>"2011-01-26T19:06:43Z" }
Octokit.expects(:repo).with("robbiehanson/CocoaLumberjack").returns(repo) Octokit.expects(:repo).with("robbiehanson/CocoaLumberjack").returns(repo)
presenter = Presenter.new(argv('--stats')) presenter = Presenter.new(argv('--stats', '--no-color'))
output = presenter.describe(@set) output = presenter.describe(@set)
output.should.include? 'Author: Robbie Hanson' output.should.include? 'Author: Robbie Hanson'
output.should.include? 'License: BSD' output.should.include? 'License: BSD'
output.should.include? 'Platform: iOS - OS X' output.should.include? 'Platform: iOS - OS X'
output.should.include? 'Watchers: 318' output.should.include? 'Watchers: 318'
output.should.include? 'Forks: 42' output.should.include? 'Forks: 42'
output.should.include? 'Pushed: more than a year ago'
end end
it "should print at least one subspec" do it "should print at least one subspec" do
......
...@@ -36,6 +36,7 @@ describe Pod::Generator::Documentation do ...@@ -36,6 +36,7 @@ describe Pod::Generator::Documentation do
'--keep-undocumented-objects', '--keep-undocumented-objects',
'--keep-undocumented-members', '--keep-undocumented-members',
'--keep-intermediate-files', '--keep-intermediate-files',
'--exit-threshold', '2',
'--index-desc', 'README', '--index-desc', 'README',
# TODO We need to either make this a hash so that options can be merged # TODO We need to either make this a hash so that options can be merged
# or not use any defaults in case an options are specified. # or not use any defaults in case an options are specified.
......
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