This commit is contained in:
Neil Matatall 2020-02-20 13:45:10 -10:00
Родитель 7cfa8bbf60
Коммит 9304c64261
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 319E94A77CF2B3C2
3 изменённых файлов: 6 добавлений и 5 удалений

3
.github/workflows/build.yml поставляемый
Просмотреть файл

@ -24,6 +24,7 @@ jobs:
gem install bundler
bundle install --jobs 4 --retry 3 --without production
bundle exec rake db:create
bundle exec rake db:schema:load
bundle exec rake db:migrate
bundle exec rspec spec
bundle exec rubocop
bundle exec rubocop

Просмотреть файл

@ -39,9 +39,9 @@ module Darrrr
expect(account_provider_faraday.headers).to include("Accept-Encoding" => "foo")
# assert handler is property set
handler = JSON.parse(account_provider_faraday.to_json)["builder"]["handlers"]
handler = JSON.parse(account_provider_faraday.to_json)["builder"]["adapter"]
expect(handler).to_not be_nil
handler_name = handler.first["name"]
handler_name = handler["name"]
expect(handler_name).to_not be_nil
expect(handler_name).to eq("Faraday::Adapter::NetHttp")
end

Просмотреть файл

@ -56,9 +56,9 @@ module Darrrr
expect(recovery_provider_faraday.headers).to include("Accept-Encoding" => "foo")
# assert handler is property set
handler = JSON.parse(recovery_provider_faraday.to_json)["builder"]["handlers"]
handler = JSON.parse(recovery_provider_faraday.to_json)["builder"]["adapter"]
expect(handler).to_not be_nil
handler_name = handler.first["name"]
handler_name = handler["name"]
expect(handler_name).to_not be_nil
expect(handler_name).to eq("Faraday::Adapter::NetHttp")
end