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