Opened 15 years ago
Last modified 7 years ago
#2916 enhancement new
Tests should create their own temporary working directories, rather than relying on _trial_temp
Reported by: | Jonathan Lange | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | trial | Keywords: | |
Cc: | Branch: | ||
Author: |
Description
Relying on _trial_temp is bad, because tests that inherit from Twisted's TestCase
often need to be used in other runners.
Change History (2)
comment:1 Changed 11 years ago by
Owner: | Jonathan Lange deleted |
---|
comment:2 Changed 7 years ago by
Note: See
TracTickets for help on using
tickets.
This means the
_trial_temp
logic belongs insidetwisted.trial.unittest.SynchronousTestCase
, right? Rather than, say, inside each test method or each subclass'ssetUp
method.