本文整理汇总了Python中models.Book.reserve方法的典型用法代码示例。如果您正苦于以下问题:Python Book.reserve方法的具体用法?Python Book.reserve怎么用?Python Book.reserve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Book
的用法示例。
在下文中一共展示了Book.reserve方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_book_can_borrow_reserved_book_if_only_reserver
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_can_borrow_reserved_book_if_only_reserver():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.check_out('RESERVER')
assert_equals(len(book.reservations), 0)
示例2: test_book_can_reserve_new_book_once
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_can_reserve_new_book_once():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('RESERVER')
assert_equals(len(book.reservations), 1)
assert_in('RESERVER', book.reservations)
示例3: test_book_can_reserve_new_book_with_more_than_one_user
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_can_reserve_new_book_with_more_than_one_user():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('ANOTHER RESERVER')
assert_equals(len(book.reservations), 2)
assert_equals('RESERVER', book.reservations[0])
assert_equals('ANOTHER RESERVER', book.reservations[1])
示例4: test_options_no_borrower_with_many_reservers_by_other
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_options_no_borrower_with_many_reservers_by_other():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('RESERVER 2')
book.reserve('RESERVER 3')
expected = { Book.CAN_RESERVE: True }
assert_equals(expected, book.get_options('OTHER'))
示例5: test_book_can_borrow_reserved_book_if_first_reserver
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_can_borrow_reserved_book_if_first_reserver():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('ANOTHER RESERVER')
book.check_out('RESERVER')
assert_equals(len(book.reservations), 1)
assert_equals('ANOTHER RESERVER', book.reservations[0])
示例6: test_options_with_borrower_with_many_reservers_by_reserver
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_options_with_borrower_with_many_reservers_by_reserver():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.check_out('BORROWER')
book.reserve('RESERVER')
book.reserve('RESERVER 2')
book.reserve('RESERVER 3')
expected = {}
expected[Book.CAN_CANCEL] = True
assert_equals(expected, book.get_options('RESERVER'))
示例7: test_book_can_un_reserve_book
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_can_un_reserve_book():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('ANOTHER RESERVER')
book.reserve('YET ANOTHER RESERVER')
book.un_reserve('ANOTHER RESERVER')
book.un_reserve('RESERVER')
book.un_reserve('YET ANOTHER RESERVER')
assert_equals(0, len(book.reservations))
示例8: test_book_cannot_be_borrowed_when_reserved
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_cannot_be_borrowed_when_reserved():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.check_out('BORROWER')
示例9: test_book_cannot_un_reserve_book_when_not_reserved_by_you
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_cannot_un_reserve_book_when_not_reserved_by_you():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.un_reserve('ANOTHER RESERVER')
示例10: test_options_no_borrower_with_one_reserver_by_reserver
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_options_no_borrower_with_one_reserver_by_reserver():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
expected = { Book.CAN_BORROW: True, Book.CAN_CANCEL: True }
assert_equals(expected, book.get_options('RESERVER'))
示例11: test_book_cannot_borrow_reserved_book_if_later_reserver
# 需要导入模块: from models import Book [as 别名]
# 或者: from models.Book import reserve [as 别名]
def test_book_cannot_borrow_reserved_book_if_later_reserver():
book = Book('TITLE', 'DESCRIPTION', 'ISBN')
book.reserve('RESERVER')
book.reserve('ANOTHER RESERVER')
book.check_out('ANOTHER RESERVER')