From 48b14e3936a67081946fb3d2d2f34e7d3205c1ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renato=20Castan=CC=83eda?= Date: Wed, 6 Dec 2017 19:41:43 -0600 Subject: [PATCH] Changes on README Changes on README and comments added --- README.md | 2 +- test/spec/payouts_spec.rb | 1 + test/spec_helper.rb | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) 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|