本文整理汇总了Python中cbank.model.queries.Session.add方法的典型用法代码示例。如果您正苦于以下问题:Python Session.add方法的具体用法?Python Session.add怎么用?Python Session.add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cbank.model.queries.Session
的用法示例。
在下文中一共展示了Session.add方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_refund_amount_negative
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [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()
示例2: test_charge_sum_zero
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [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)
示例3: test_manager_projects
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [as 别名]
def test_manager_projects (self):
project_1 = Mock(['id'])
project_1.id = "1"
project_2 = Mock(['id'])
project_2.id = "2"
resource = Mock(['id'])
resource.id = "1"
dt = datetime(2000, 1, 1)
Session.add(Allocation(project_1, resource, 0, dt, dt))
Session.add(Allocation(project_2, resource, 0, dt, dt))
assert_equal(
get_projects(manager=User.cached("1")),
[Project.cached("1")])
示例4: test_allocations
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [as 别名]
def test_allocations (self):
project_1 = Mock(['id'])
project_1.id = "1"
project_2 = Mock(['id'])
project_2.id = "2"
resource = Mock(['id'])
resource.id = "1"
dt = datetime(2000, 1, 1)
Session.add(Allocation(project_1, resource, 0, dt, dt))
Session.add(Allocation(project_2, resource, 0, dt, dt))
assert_equal(
set(get_projects()),
set([Project.cached("1"), Project.cached("2")]))
示例5: test_charge_amount_negative
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [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()
示例6: test_hold_amount_negative
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [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()
示例7: test_allocation_amount_negative
# 需要导入模块: from cbank.model.queries import Session [as 别名]
# 或者: from cbank.model.queries.Session import add [as 别名]
def test_allocation_amount_negative (self):
a = Allocation(Project("1"), Resource("1"), -1,
datetime.now(), datetime.now())
Session.add(a)
Session.commit()