summaryrefslogtreecommitdiffstats
path: root/askbot/tests
Commit message (Collapse)AuthorAgeFilesLines
* refactor cache test to not print on successRobert Martin2013-05-291-6/+9
|
* make email clean test quieterRobert Martin2013-05-291-6/+1
| | | | | | Email clean test was printing two strings from the test, even if they match, which was unnecessary. Fixed so it only prints if they are different; the default behavior for assertEqual().
* adjusted test cases to fit the change on following the questionEvgeny Fadeev2013-05-271-0/+26
|
* Merge pull request #132 from bobbydavid/globaltestEvgeny Fadeev2013-05-241-2/+5
|\ | | | | prevent db_api test from clobbering global name
| * prevent db_api test from clobbering global nameRobert Martin2013-05-241-2/+5
| | | | | | | | | | | | | | One of the tests checks that we can rename the GLOBAL_GROUP_NAME, but never reverts it to its original value. This causes future tests to fail even though they shouldn't. This fix reverts GLOBAL_GROUP_NAME after testing it can be changed.
* | Merge pull request #131 from bobbydavid/mysqlEvgeny Fadeev2013-05-231-3/+2
|\| | | | | remove key restriction in test.
| * remove key restriction in test.Robert Martin2013-05-231-3/+2
| | | | | | | | | | | | | | | | At this point in the test, there should only be one `Thread` object. However, because of previous tests, MySQL does not necessarily give that object id=1. By not specifying the id, the test does the intended thing. The get() function will fail if more than one object matches, so the test will still barf if more than one Thread object exists.
* | fix bug where private key was hard-coded as 2.Robert Martin2013-05-231-6/+5
|/ | | | | | | Previously this test failed in MySQL because the private key for user_two was hard-coded as 2. This change determines it programatically from user_two, which lets the MySQL test work properly.
* added an optional service url prefix to later support namespacesEvgeny Fadeev2013-05-191-10/+10
|
* fixed a bug in the user network pageEvgeny Fadeev2013-05-101-0/+11
|
* removed possibility to have >1 account with the same email addressEvgeny Fadeev2013-05-011-1/+1
|
* seems to work on django 1.5Evgeny Fadeev2013-04-261-20/+24
|
* refactoring of the questions title search viewEvgeny Fadeev2013-04-231-3/+3
|
* fixed voting test casesEvgeny Fadeev2013-04-201-6/+15
|
* removed reputation limit to post comments and allowed users repost own ↵Evgeny Fadeev2013-04-101-1/+3
| | | | answers and comments
* fixed a test caseEvgeny Fadeev2013-04-081-1/+1
|
* fixed a test caseEvgeny Fadeev2013-03-241-1/+1
|
* added option to disable the big ask buttonEvgeny Fadeev2013-03-242-10/+45
|
* fixed a failing testEvgeny Fadeev2013-03-231-1/+1
|
* allowed to enable and disable scopes on the main pageEvgeny Fadeev2013-03-222-5/+5
|
* unified css of buttonsEvgeny Fadeev2013-03-171-1/+3
|
* Fixed a settings manipulation that was breaking other tests.Rodrigo Daunoravicius2013-01-191-1/+4
| | | | | The manipulation of ASKBOT_EXTRA_SKINS was breaking widget_tests and post_model_tests when running the full askbot test suite.
* merged adolfos tag subscriptions featureEvgeny Fadeev2013-01-131-4/+7
|
* Merge branch 'master' into tag_subscriptionAdolfo Fitoria2013-01-104-12271/+12
|\
| * added basic support for multilingual contentEvgeny Fadeev2013-01-064-12271/+12
| |
* | added testcaseAdolfo Fitoria2013-01-091-0/+22
| |
* | modified test case that is not relevant anymore (auto tag deletion)Adolfo Fitoria2013-01-091-2/+2
|/
* made all test cases pass and small refactoring of the user activity pageEvgeny Fadeev2012-12-253-12/+20
|
* merged with the master branchEvgeny Fadeev2012-12-052-3/+112
|\
| * bugfixes: 1) global subscribers get emails even if frequency is zero; 2) if ↵Evgeny Fadeev2012-12-052-3/+112
| | | | | | | | subscribed tag set is enabled users wont get emails on tag subscription; 3) if email is read-only email is lost upon editing user profile; 4) in some browsers there is horizontal scroll in the post body, which should not be there
* | added search dropdown and the ask buttonEvgeny Fadeev2012-11-231-7/+7
|/
* added django-style template loader class and replaced render_into_skin with ↵Evgeny Fadeev2012-11-172-2/+2
| | | | render
* merged the django1.4 compatibility branch by AdolfoEvgeny Fadeev2012-11-101-9/+7
|\
| * Merge branch 'master' into django1.4Adolfo Fitoria2012-10-243-15/+14
| |\
| * \ Merge branch 'master' into django1.4Adolfo Fitoria2012-10-224-2/+241
| |\ \
| * \ \ Merge branch 'master' into django1.4Adolfo Fitoria2012-10-124-2/+44
| |\ \ \
| * | | | Fixed issue with feed, changed settings.py template, fixed issue withAdolfo Fitoria2012-10-101-9/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | code for stripping email client quote separator and the corresponding test ↵Evgeny Fadeev2012-11-062-21/+31
| | | | | | | | | | | | | | | | | | | | cases for some most common email clients
* | | | | added some test cases for the quote separator strippingEvgeny Fadeev2012-11-021-8/+16
| | | | |
* | | | | reply from squirremailAdolfo Fitoria2012-11-011-0/+2
| | | | |
* | | | | added kmail and outlook.com repliesAdolfo Fitoria2012-11-011-0/+7
| | | | |
* | | | | added lower rep barrier to accept any posts with links - as a first line of ↵Evgeny Fadeev2012-11-011-13/+43
| | | | | | | | | | | | | | | | | | | | defense against spam
* | | | | started collecting email response quote separatorsEvgeny Fadeev2012-10-311-0/+8
| | | | |
* | | | | reimplemented the link insertion rep barrierEvgeny Fadeev2012-10-292-3/+55
| | | | |
* | | | | undone the first implementation of limiting the link insertionEvgeny Fadeev2012-10-281-43/+13
| | | | |
* | | | | added reputation limit to insert links into questions and answersEvgeny Fadeev2012-10-281-13/+43
| | | | |
* | | | | added Forbidden responces to some viewsEvgeny Fadeev2012-10-251-2/+0
| |_|_|/ |/| | |
* | | | cleaned up some remaining older group related functionsEvgeny Fadeev2012-10-221-0/+2
| | | |
* | | | moved get_global_group() onto GroupManagerEvgeny Fadeev2012-10-223-15/+12
| |_|/ |/| |
* | | fixed bugs causing test cases to fail for MySQL backendEvgeny Fadeev2012-10-181-2/+2
| | |