當前位置: 首頁>>代碼示例>>Python>>正文


Python Session.commit方法代碼示例

本文整理匯總了Python中cbank.model.queries.Session.commit方法的典型用法代碼示例。如果您正苦於以下問題:Python Session.commit方法的具體用法?Python Session.commit怎麽用?Python Session.commit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cbank.model.queries.Session的用法示例。


在下文中一共展示了Session.commit方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_refund_amount_negative

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_refund_amount_negative (self):
     a = Allocation(Project("1"), Resource("1"), 10,
                    datetime.now(), datetime.now())
     c = Charge(a, 5)
     r = Refund(c, -1)
     Session.add(r)
     Session.commit()
開發者ID:anderbubble,項目名稱:cbank,代碼行數:9,代碼來源:test_queries.py

示例2: test_charge_sum_zero

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_charge_sum_zero (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     Session.add(allocation)
     Session.commit()
     Session.close()
     allocation = Session.query(Allocation).one()
     assert_equal(allocation._charge_sum, 0)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:11,代碼來源:test_mappers.py

示例3: test_charge_sum_one

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_charge_sum_one (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     charge = Charge(allocation, 1)
     Session.add_all([allocation, charge])
     Session.commit()
     Session.close()
     allocation = Session.query(Allocation).one()
     assert_equal(allocation._charge_sum, 1)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:12,代碼來源:test_mappers.py

示例4: test_hold_sum_one

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_hold_sum_one (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     hold = Hold(allocation, 1)
     Session.add_all([allocation, hold])
     Session.commit()
     Session.close()
     allocation = Session.query(Allocation).one()
     assert_equal(allocation._active_hold_sum, 1)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:12,代碼來源:test_mappers.py

示例5: test_refund_sum_zero

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_refund_sum_zero (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     charge = Charge(allocation, 0)
     Session.add_all([allocation, charge])
     Session.commit()
     Session.close()
     charge = Session.query(Charge).one()
     assert_equal(charge._refund_sum, 0)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:12,代碼來源:test_mappers.py

示例6: test_hold_sum_two_with_one_inactive

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_hold_sum_two_with_one_inactive (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     hold_1 = Hold(allocation, 1)
     hold_1.active = False
     hold_2 = Hold(allocation, 2)
     Session.add_all([allocation, hold_1, hold_2])
     Session.commit()
     Session.close()
     allocation = Session.query(Allocation).one()
     assert_equal(allocation._active_hold_sum, 2)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:14,代碼來源:test_mappers.py

示例7: test_refund_sum_two

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_refund_sum_two (self):
     allocation = Allocation(None, None, 0, datetime(2000, 1, 1), datetime(2001, 1, 1))
     allocation.project_id = "project"
     allocation.resource_id = "resource"
     charge = Charge(allocation, 0)
     refund_1 = Refund(charge, 1)
     refund_2 = Refund(charge, 2)
     Session.add_all([allocation, charge, refund_1, refund_2])
     Session.commit()
     Session.close()
     allocation = Session.query(Allocation).one()
     assert_equal(allocation._refund_sum, 3)
開發者ID:anderbubble,項目名稱:cbank,代碼行數:14,代碼來源:test_mappers.py

示例8: test_charge_amount_negative

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_charge_amount_negative (self):
     a = Allocation(Project("1"), Resource("1"), 10,
                    datetime.now(), datetime.now())
     c = Charge(a, -1)
     Session.add(c)
     Session.commit()
開發者ID:anderbubble,項目名稱:cbank,代碼行數:8,代碼來源:test_queries.py

示例9: test_hold_amount_negative

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_hold_amount_negative (self):
     a = Allocation(Project("1"), Resource("1"), 10,
                    datetime.now(), datetime.now())
     h = Hold(a, -1)
     Session.add(h)
     Session.commit()
開發者ID:anderbubble,項目名稱:cbank,代碼行數:8,代碼來源:test_queries.py

示例10: test_allocation_amount_negative

# 需要導入模塊: from cbank.model.queries import Session [as 別名]
# 或者: from cbank.model.queries.Session import commit [as 別名]
 def test_allocation_amount_negative (self):
     a = Allocation(Project("1"), Resource("1"), -1,
                    datetime.now(), datetime.now())
     Session.add(a)
     Session.commit()
開發者ID:anderbubble,項目名稱:cbank,代碼行數:7,代碼來源:test_queries.py


注:本文中的cbank.model.queries.Session.commit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。