Sha256: 9f8ab6256dc7ca1426f5d6b3e643007079de46ab2d021223ba786322f64934fa
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
require 'spec_helper' describe GH::Parallel do before do stub_request(:get, "https://api.github.com/users/rkh").to_return(:status => 200, :body => '{"name": "Konstantin Haase"}') stub_request(:get, "https://api.github.com/users/svenfuchs").to_return(:status => 200, :body => '{"name": "Sven Fuchs"}') stub_request(:get, "https://api.github.com/users/rkh?per_page=100").to_return(:status => 200, :body => '{"name": "Konstantin Haase"}') stub_request(:get, "https://api.github.com/users/svenfuchs?per_page=100").to_return(:status => 200, :body => '{"name": "Sven Fuchs"}') end it 'allows normal requests' do GH['users/rkh']['name'].should be == 'Konstantin Haase' end it 'sets in_parallel?' do GH.should_not be_in_parallel GH.in_parallel { GH.should be_in_parallel } GH.should_not be_in_parallel end it 'runs requests in parallel' do WebMock.allow_net_connect! GH::DefaultStack.replace GH::MockBackend, GH::Remote GH.current = nil GH.should_not be_in_parallel a = b = nil GH.in_parallel do GH.should be_in_parallel a = GH['users/rkh'] b = GH['users/svenfuchs'] expect { a['name'] }.to raise_error(RuntimeError) expect { b['name'] }.to raise_error(RuntimeError) end a['name'].should be == "Konstantin Haase" b['name'].should be == "Sven Fuchs" a.should respond_to('to_hash') b.should respond_to('to_hash') GH.should_not be_in_parallel end it 'returns the block value' do GH.in_parallel { 42 }.should be == 42 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gh-0.6.1 | spec/parallel_spec.rb |