Commit 4cdeed68 authored by Will Pragnell's avatar Will Pragnell

Removed unnecessary () from specs

parent de6a8702
...@@ -3,8 +3,8 @@ require File.expand_path("../../../../spec_helper", __FILE__) ...@@ -3,8 +3,8 @@ require File.expand_path("../../../../spec_helper", __FILE__)
describe Pod::Generator::Plist do describe Pod::Generator::Plist do
before do before do
@sandbox = temporary_sandbox @sandbox = temporary_sandbox
@target_definition = mock() @target_definition = mock
@pods = [mock()] @pods = [mock]
@pods[0].expects(:license_text).returns("LICENSE_TEXT").at_least_once @pods[0].expects(:license_text).returns("LICENSE_TEXT").at_least_once
@pods[0].expects(:name).returns("POD_NAME").at_least_once @pods[0].expects(:name).returns("POD_NAME").at_least_once
@plist = Pod::Generator::Plist.new(@target_definition, @pods) @plist = Pod::Generator::Plist.new(@target_definition, @pods)
......
...@@ -3,8 +3,8 @@ require File.expand_path("../../../spec_helper", __FILE__) ...@@ -3,8 +3,8 @@ require File.expand_path("../../../spec_helper", __FILE__)
describe Pod::Generator::Acknowledgements do describe Pod::Generator::Acknowledgements do
before do before do
@sandbox = temporary_sandbox @sandbox = temporary_sandbox
@target_definition = mock() @target_definition = mock
@pods = [mock()] @pods = [mock]
@acknowledgements = Pod::Generator::Acknowledgements.new(@target_definition, @pods) @acknowledgements = Pod::Generator::Acknowledgements.new(@target_definition, @pods)
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