diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:39:15 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:39:15 +0000 |
commit | 51670cc1cdb08c3da46670d42b29a6a4b4014d26 (patch) | |
tree | 9cc465b71a3969535536fe74838329f59766dfc6 | |
parent | 76fd5f9a352564c6241cf88ba6fae0a9701e4270 (diff) |
Use db:test:prepare to prepare the way for tests
-rwxr-xr-x | script/spec-all-pairs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/script/spec-all-pairs b/script/spec-all-pairs index 25ca4c32a..e5a6dc1cb 100755 --- a/script/spec-all-pairs +++ b/script/spec-all-pairs @@ -4,8 +4,7 @@ # to winkle out order-dependent failures. test_pair () { - rake db:test:purge > /dev/null - rake db:test:clone_structure > /dev/null + rake db:test:prepare > /dev/null if script/spec "$1" "$2" > /dev/null 2>&1 then echo "OK: $1 $2" |