25 lines
1015 B
Ruby
25 lines
1015 B
Ruby
require 'spec_helper'
|
|
|
|
describe Locomotive::Httparty::Webservice do
|
|
|
|
context '#consuming' do
|
|
|
|
it 'sets the base uri from a simple url' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/', { :base_uri => 'http://blog.locomotiveapp.org' })
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org')
|
|
end
|
|
|
|
it 'sets both the base uri and the path from an url with parameters' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/api/read/json?num=3', { :base_uri => 'http://blog.locomotiveapp.org' })
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org/api/read/json?num=3')
|
|
end
|
|
|
|
it 'sets auth credentials' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/', { :base_uri => 'http://blog.locomotiveapp.org', :basic_auth => { :username => 'john', :password => 'foo' } })
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org', { :username => 'john', :password => 'foo' })
|
|
end
|
|
|
|
end
|
|
|
|
end
|