Sha256: 50f5e89e41ff567eb8dccd579c6859c05aebc77b8b61ce915ca16acbcc770d95
Contents?: true
Size: 442 Bytes
Versions: 189
Compression:
Stored size: 442 Bytes
Contents
describe KnapsackPro::Client::API::Action do let(:endpoint_path) { double } let(:http_method) { double } let(:request_hash) { double } subject do described_class.new( endpoint_path: endpoint_path, http_method: http_method, request_hash: request_hash ) end its(:endpoint_path) { should eq endpoint_path } its(:http_method) { should eq http_method } its(:request_hash) { should eq request_hash } end
Version data entries
189 entries across 189 versions & 1 rubygems