Sha256: 3916c61f5cc4f0f701469473cd04dd048c321a36d46b193801efb1f29b3c0a37

Contents?: true

Size: 342 Bytes

Versions: 16

Compression:

Stored size: 342 Bytes

Contents

require File.expand_path("../../spec_helper", __FILE__)

module HAR
  describe Entry do
    let(:entry) { Entry.new json(fixture_path("entry1.json"))}

    it "has a request" do
      entry.request.should be_kind_of(Request)
    end

    it "has a response" do
      entry.response.should be_kind_of(Response)
    end

  end # Entry
end # HAR

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
har-0.1.5 spec/har/entry_spec.rb
har-0.1.4 spec/har/entry_spec.rb
har-0.1.3 spec/har/entry_spec.rb
har-0.1.2 spec/har/entry_spec.rb
har-0.1.1 spec/har/entry_spec.rb
har-0.1.0 spec/har/entry_spec.rb
har-0.0.9 spec/har/entry_spec.rb
har-0.0.8 spec/har/entry_spec.rb
har-0.0.7 spec/har/entry_spec.rb
har-0.0.6 spec/har/entry_spec.rb
har-0.0.5 spec/har/entry_spec.rb
har-0.0.4 spec/har/entry_spec.rb
har-0.0.3 spec/har/entry_spec.rb
har-0.0.2 spec/har/entry_spec.rb
har-0.0.1 spec/har/entry_spec.rb
har-0.0.1.dev spec/har/entry_spec.rb