import { MockCartShippingRate } from '@daffodil/cart/testing'
class MockCartShippingRate implements DaffCartShippingRate {
id: faker.string.uuid() = faker.string.uuid()
carrier: string = 'Birds Inc.'
carrier_title: string = 'laden'
method_code: faker.lorem.word() = faker.lorem.word()
method_title: string = 'swallow'
method_description: string = 'efficient'
price: faker.number.int({ min: 1, max: 1500 }) = faker.number.int({ min: 1, max: 1500 })
}