diff --git a/README.md b/README.md index 01e40f5..7980973 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Or install it from the command line: $ gem install openpay -###Requirements +### Requirements * ruby 2.4 or higher diff --git a/test/spec/payouts_spec.rb b/test/spec/payouts_spec.rb index 29ee87e..03d7155 100644 --- a/test/spec/payouts_spec.rb +++ b/test/spec/payouts_spec.rb @@ -220,6 +220,7 @@ end end +#skipping for review skip 'iterates over a given customer payouts' do a_customer=@customers.all.last @payouts.each(a_customer['id']) do |pay| diff --git a/test/spec_helper.rb b/test/spec_helper.rb index a46a919..e35354b 100644 --- a/test/spec_helper.rb +++ b/test/spec_helper.rb @@ -4,6 +4,7 @@ require 'openpay' require 'factory_bot' +#uncomment below to test on travis-ci FactoryBot.find_definitions require 'test/Factories' require 'rspec' @@ -12,6 +13,7 @@ RSpec.configure do |config| config.include FactoryBot::Syntax::Methods + #uncomment below to test on local #config.before(:suite) {FactoryBot.reload} config.expect_with :rspec do |c|