Sha256: 5d17ed1a0901cd343506413334ea420e477dc4b471a8516615c850a5d2a23b4e
Contents?: true
Size: 531 Bytes
Versions: 50
Compression:
Stored size: 531 Bytes
Contents
require 'spec_helper' module GoTransverseTractApi RSpec.describe Product::ProductPrice do before(:each) { http_auth } context ".find_by_eid" do it "returns a product price for a given eid" do data = described_class.find_by_eid(82) expect(data).to_not be_nil end end context ".find_by_product_eid" do it "returns a product price for a given product eid" do data = described_class.find_by_product_eid(51) expect(data).to_not be_nil end end end end
Version data entries
50 entries across 50 versions & 1 rubygems