Skip to content

Commit

Permalink
[BridgeSupport] Run specs only if the executable is available.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiopelosin committed Dec 18, 2012
1 parent 21e60f9 commit aaac7dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion spec/integration_spec.rb
Expand Up @@ -168,7 +168,7 @@ module Pod
#--------------------------------------#

if `which appledoc`.strip.empty?
puts " ! ".red << "Skipping documentation generation specs, because appledoc can't be found."
puts " ! ".red << "Skipping because the `appledoc` executable can't be found."
else
it "generates documentation of all pods by default" do

Expand Down
21 changes: 13 additions & 8 deletions spec/unit/generator/bridge_support_spec.rb
@@ -1,14 +1,19 @@
require File.expand_path('../../../spec_helper', __FILE__)

describe "Pod::Generator::BridgeSupport" do
it "generates a metadata file with the appropriate search paths" do
headers = %w{ /some/dir/foo.h /some/dir/bar.h /some/other/dir/baz.h }.map { |h| Pathname.new(h) }
generator = Pod::Generator::BridgeSupport.new(headers)
def generator.gen_bridge_metadata(command)
@command = command

if `which gen_bridge_metadata`.strip.empty?
puts " ! ".red << "Skipping because the `gen_bridge_metadata` executable can't be found."
else
it "generates a metadata file with the appropriate search paths" do
headers = %w{ /some/dir/foo.h /some/dir/bar.h /some/other/dir/baz.h }.map { |h| Pathname.new(h) }
generator = Pod::Generator::BridgeSupport.new(headers)
def generator.gen_bridge_metadata(command)
@command = command
end
generator.save_as(Pathname.new("/path/to/Pods.bridgesupport"))
generator.instance_variable_get(:@command).should ==
%{-c "-I '/some/dir' -I '/some/other/dir'" -o '/path/to/Pods.bridgesupport' '#{headers.join("' '")}'}
end
generator.save_as(Pathname.new("/path/to/Pods.bridgesupport"))
generator.instance_variable_get(:@command).should ==
%{-c "-I '/some/dir' -I '/some/other/dir'" -o '/path/to/Pods.bridgesupport' '#{headers.join("' '")}'}
end
end

0 comments on commit aaac7dd

Please sign in to comment.