git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* How to re-use setups in multiple tests?
@ 2007-10-01 10:27 Tom Clarke
  2007-10-01 11:45 ` Johannes Schindelin
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Clarke @ 2007-10-01 10:27 UTC (permalink / raw)
  To: git

I'm wondering if there's a pattern for re-using setups across several
tests, similar to how a setUp function is used in xUnit. The problem
is I need the setup to actually be re-run, for each test to start from
a clean slate, so using the following doesn't work as the setup is
just run before the first test.

test_expect_success setup '
     # setup repostory to a particular state
'
test_expect_success test1 '
    # some test that expects the state to be as defined in setup, and
changes state of repository
'

test_expect_success test2 '
    # another test that expects the state to be as defined in setup
'

Is there a convention for doing this that's already used? Perhaps
pulling the setup code into a function or duplicating the code? Or is
it better to create a separate test file for tests that need to be
isolated?

Thanks,

-Tom

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-10-01 13:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-01 10:27 How to re-use setups in multiple tests? Tom Clarke
2007-10-01 11:45 ` Johannes Schindelin
2007-10-01 12:16   ` Tom Clarke
2007-10-01 12:39     ` Johannes Schindelin
2007-10-01 12:46       ` Tom Clarke
2007-10-01 13:40         ` Karl Hasselström

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).