1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Helper methods for branch tests and pagetest."""
__metaclass__ = type
__all__ = [
'reset_all_branch_last_modified',
]
from datetime import datetime
import pytz
from zope.component import getUtility
from canonical.launchpad.ftests import (
login,
logout,
)
from lp.code.interfaces.branchcollection import IAllBranches
def reset_all_branch_last_modified(last_modified=datetime.now(pytz.UTC)):
"""Reset the date_last_modifed value on all the branches.
DO NOT use this in a non-pagetest.
"""
login('foo.bar@canonical.com')
branches = getUtility(IAllBranches).getBranches()
for branch in branches:
branch.date_last_modified = last_modified
logout()
|