Sha256: 3a125bafaebed6f2f5c4867fc838c12d34d6107c996156ec7d64b2a33293d6ac

Contents?: true

Size: 344 Bytes

Versions: 1

Compression:

Stored size: 344 Bytes

Contents

describe Hubspot do
  describe Hubspot::File do
    before { Hubspot.configure(hapikey: "demo") }
    describe ".find_by_id" do
      it "should fetch specific file" do
        VCR.use_cassette("file_find") do
          file = Hubspot::File.find_by_id(5323360053)
          file.id.should eq(5323360053)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hubspot-api-ruby-0.9.0 spec/lib/hubspot/file_spec.rb