instapaper/spec/instapaper/client_spec.rb
stve 6271356847 slight refactor in preparation for adding version 1.1 support
a couple breaking changes as part of this:

* the api version can no longer be set via configuration (since the API
itself now supports more than one version 1 and 1.1 this no longer makes
sense)
* removed module based support, all requests will require an Instapaper::Client from now on
* removed path_prefix configuration for same reasons that the api version was removed
2015-02-09 16:21:30 -05:00

5 lines
100 B
Ruby

require 'spec_helper'
describe Instapaper::Client do
let(:client) { Instapaper::Client.new }
end