Sha256: 8a91c17500204be3e4116e557d37099dbc07d9158a683053a2a7950a4a496513

Contents?: true

Size: 657 Bytes

Versions: 38

Compression:

Stored size: 657 Bytes

Contents

require File.expand_path('../../../test_helper', __FILE__)

module Maestrano
  module API
    class ListObjectTest < Test::Unit::TestCase
      include APITestHelper
      
      should "be able to retrieve full lists given a listobject" do
        @api_mock.expects(:get).twice.returns(test_response(test_account_bill_array))
        c = Maestrano::Account::Bill.all
        assert c.kind_of?(Maestrano::API::ListObject)
        assert_equal('account/bills', c.url)
        all = c.all
        assert all.kind_of?(Maestrano::API::ListObject)
        assert_equal('account/bills', all.url)
        assert all.data.kind_of?(Array)
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
maestrano-1.0.6 test/maestrano/api/list_object_test.rb
maestrano-1.0.5 test/maestrano/api/list_object_test.rb
maestrano-1.0.4 test/maestrano/api/list_object_test.rb
maestrano-1.0.3 test/maestrano/api/list_object_test.rb
maestrano-1.0.2 test/maestrano/api/list_object_test.rb
maestrano-1.0.1 test/maestrano/api/list_object_test.rb
maestrano-1.0.0 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC9 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC8 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC7 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC6 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC5 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC4 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC3 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC2 test/maestrano/api/list_object_test.rb
maestrano-1.0.0.pre.RC1 test/maestrano/api/list_object_test.rb
maestrano-0.12.5 test/maestrano/api/list_object_test.rb
maestrano-0.12.4 test/maestrano/api/list_object_test.rb
maestrano-0.12.3 test/maestrano/api/list_object_test.rb
maestrano-0.12.2 test/maestrano/api/list_object_test.rb