logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: c8a226f61c91645b0670630ec95cb60e1d8cdde0
parent: 7a281c477abacc4886e34a0e90ea0b1f489ceaf5
Author: Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>
Date:   Tue, 30 May 2017 01:02:32 +0900

Spec HttpHelper (#3416)


Diffstat:

Aspec/helpers/http_helper_spec.rb13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/spec/helpers/http_helper_spec.rb b/spec/helpers/http_helper_spec.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +require 'rails_helper' + +describe HttpHelper do + describe 'http_client' do + it 'returns HTTP::Client with default options' do + options = helper.http_client.default_options + expect(options.headers['User-Agent']).to match /.+ \(Mastodon\/.+;\ \+http:\/\/cb6e6126\.ngrok\.io\/\)/ + expect(options.timeout_options).to eq read_timeout: 10, write_timeout: 10, connect_timeout: 10 + end + end +end