summaryrefslogtreecommitdiffstats
path: root/askbot/tests
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-10-10 15:12:04 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-10-10 15:48:35 -0600
commit7658b6725d32488506f28e4867577516f2e4455f (patch)
tree4a9cd2e28ae7446820d4954d0f72b7adadc61197 /askbot/tests
parent1f90a80a86690aa70b18e8770f55afb88838a8ae (diff)
downloadaskbot-7658b6725d32488506f28e4867577516f2e4455f.tar.gz
askbot-7658b6725d32488506f28e4867577516f2e4455f.tar.bz2
askbot-7658b6725d32488506f28e4867577516f2e4455f.zip
Fixed issue with feed, changed settings.py template, fixed issue with
skin loader, fixed urls.py for feeds fixed bug in messages hack with django 1.4.1 all test pass in 1.3.1, haystack and email parsing tests fails on 1.4.1
Diffstat (limited to 'askbot/tests')
-rw-r--r--askbot/tests/page_load_tests.py16
1 files changed, 7 insertions, 9 deletions
diff --git a/askbot/tests/page_load_tests.py b/askbot/tests/page_load_tests.py
index 3805d012..9520af1a 100644
--- a/askbot/tests/page_load_tests.py
+++ b/askbot/tests/page_load_tests.py
@@ -192,19 +192,17 @@ class PageLoadTestCase(AskbotTestCase):
'get_groups_list',
status_code=status_code
)
+ #self.try_url(
+ # 'individual_question_feed',
+ # kwargs={'pk':'one-tag'},
+ # status_code=status_code)
self.try_url(
- 'feeds',
- status_code=status_code,
- kwargs={'url':'rss'})
+ 'latest_questions_feed',
+ status_code=status_code)
self.try_url(
- 'feeds',
- kwargs={'url':'rss'},
+ 'latest_questions_feed',
data={'tags':'one-tag'},
status_code=status_code)
- #self.try_url(
- # 'feeds',
- # kwargs={'url':'question'},
- # status_code=status_code)
self.try_url(
'about',
status_code=status_code,