-7.3.6 stable release

-fixed the slash_gateway and pageurl macro tests so they didn't reak havoc on the rest of the test suite.
This commit is contained in:
Roy Johnson 2007-01-24 17:32:57 +00:00
parent d5b1fe318e
commit 83c2595c40
3 changed files with 17 additions and 7 deletions

File diff suppressed because one or more lines are too long

View file

@ -63,3 +63,8 @@ TODO: {
local $TODO = "Tests to make later";
ok(0, 'Fetch url from locally made asset with known url');
}
END {
# See note in the Slash_gateway macro test about this.
$session->setting->set("preventProxyCache", $preventProxyCache);
}

View file

@ -61,5 +61,9 @@ $session->setting->set('preventProxyCache', 0);
}
END {
#
# Not sure we should be doing this. I understand we want to leave things as we found them, however if this is set, a lot of tests after this one will fail.
# Perhaps we should set it to 0 always, regardless of their setting?
#
$session->setting->set('preventProxyCache', $preventProxyCache);
}