Modify ↓
Opened 16 years ago
Closed 16 years ago
#3137 closed enhancement (fixed)
Fix tests and include functional tests
Reported by: | Pedro Algarvio, aka, s0undt3ch | Owned by: | John Hampton |
---|---|---|---|
Priority: | normal | Component: | AccountManagerPlugin |
Severity: | normal | Keywords: | tests |
Cc: | Matt Good, Noah Kantrowitz | Trac Release: | 0.11 |
Description
Here's a patch to fix tests.
-
acct_mgr/tests/db.py
21 21 class _BaseTestCase(unittest.TestCase): 22 22 def setUp(self): 23 23 #self.basedir = os.path.realpath(tempfile.mkdtemp()) 24 self.env = EnvironmentStub( )24 self.env = EnvironmentStub(enable=['trac.*', 'acct_mgr.*']) 25 25 self.env.config.set('account-manager', 'password_store', 26 26 'SessionStore') 27 27 self.store = SessionStore(self.env)
Attachments (1)
Change History (5)
comment:1 Changed 16 years ago by
Owner: | changed from Matt Good to John Hampton |
---|
comment:2 Changed 16 years ago by
Cc: | Matt Good Noah Kantrowitz added; anonymous removed |
---|---|
Severity: | blocker → normal |
Summary: | Fix tests → Fix tests and include functional tests |
Type: | defect → enhancement |
Changed 16 years ago by
Attachment: | fix_and_include_functional_tests.patch added |
---|
comment:3 Changed 16 years ago by
If you find it good to check in I can provide a svn patch, I'd just like to keep my local acct_mgr as pristine as possible.
comment:4 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
I'm including you guys in CC in order to check the tests I'm about to attach, and to let me know if you have more to include, and, of course, to see if one of you guys check's in the patch.
P.S.: It's a mercurial patch, use
patch -p1 < ....