Exemplo n.º 1
0
 def test_add(self):
     product = Product()
     product.title = "title"
     product.descr = "desc"
     product.type = ProductType.MATERIAL
     product.updated_at = product.inserted_at = util.utcnow()
     self.db.add(product)
     self.db.commit()
     self.assertTrue(True)
Exemplo n.º 2
0
    def test_add(self):
        product = Product()
        product.title = "title"
        product.descr = "desc"
        product.type = ProductType.MATERIAL
        product.updated_at = product.inserted_at = util.utcnow()
        self.db.add(product)

        trade = Trade()
        trade.trade_id = self.gen_uid()
        trade.timeout = "1d"
        trade.fee = 0.01
        trade.status = TradeStatus.PENDING
        trade.channel = ChannelType.WAP
        trade.show_url = "url"
        trade.updated_at = trade.inserted_at = util.utcnow()
        trade.product = product

        self.db.add(trade)
        self.db.commit()
        self.assertTrue(True)