- 06 Feb, 2015 5 commits
-
-
So far, it checks: * Whether setUp is called in TestCase setUp methods. * If _("translate me") functions are called with only string literals.
Calen Pennington committed -
TNL-1353: Fix annotator dependency.
Anton Stupak committed -
Problem with Adaptive Hint is inaccessible
ahsan-ul-haq committed -
Quote the starts with expression id^
Shrhawk committed -
TNL-1240
Syed Hassan Raza committed
-
- 05 Feb, 2015 14 commits
-
-
re-shard cms lettuce tests back to 1 shards
Christine Lytwynec committed -
Christine Lytwynec committed
-
Revert "Add pylint plugin to check whether setUp is called in ...
Jesse Zoldak committed -
This reverts commit a92ca9d7.
Jesse Zoldak committed -
Upgrade: Font Awesome 4.3.0
Brian Talbot committed -
Fix pep8 violation
Jesse Zoldak committed -
Jesse Zoldak committed
-
Use new modulestore override paradigm in the new testcase
Jesse Zoldak committed -
Jesse Zoldak committed
-
polesye committed
-
Update default video that appears when adding a new Video component
Anton Stupak committed -
polesye committed
-
Info-level logging for certificate management commands
Will Daly committed -
Will Daly committed
-
- 04 Feb, 2015 21 commits
-
-
Clean up ModuleStoreTestCase
Calen Pennington committed -
Update privacy policy date to the most recent
Sarina Canelake committed -
Sarina Canelake committed
-
Christine Lytwynec committed
-
Akiva Leffert committed
-
Internationalize aria-label attributes
David Baumgold committed -
Remove the <p> and label from textline tnl-1074
Ahsan Ulhaq committed -
Ahsan Ulhaq committed
-
There were no label added for problem with adaptive hint so for the question added the label and insteat of using for attribute used the label as the parent of input field TNL-1074
Ahsan Ulhaq committed -
Change name and email modal couple of accessibilty issues
ahsan-ul-haq committed -
(WIP) Unicode fixes for log messages with username and other unicode input
Sarina Canelake committed -
Delete unused student_profile API.
Christina Roberts committed -
Add dcikatic, dsego and mjevtic to the AUTHORS file
Davorin Šego committed -
Davorin Sego committed
-
Search form accessibility
Davorin Šego committed -
David Baumgold committed
-
Calen Pennington committed
-
Calen Pennington committed
-
Calen Pennington committed
-
Calen Pennington committed
-
The existing pattern of using `override_settings(MODULESTORE=...)` prevented us from having more than one layer of subclassing in modulestore tests. In a structure like: @override_settings(MODULESTORE=store_a) class BaseTestCase(ModuleStoreTestCase): def setUp(self): # use store @override_settings(MODULESTORE=store_b) class ChildTestCase(BaseTestCase): def setUp(self): # use store In this case, the store actions performed in `BaseTestCase` on behalf of `ChildTestCase` would still use `store_a`, even though the `ChildTestCase` had specified to use `store_b`. This is because the `override_settings` decorator would be the innermost wrapper around the `BaseTestCase.setUp` method, no matter what `ChildTestCase` does. To remedy this, we move the call to `override_settings` into the `ModuleStoreTestCase.setUp` method, and use a cleanup to remove the override. Subclasses can just defined the `MODULESTORE` class attribute to specify which modulestore to use _for the entire `setUp` chain_. [PLAT-419]
Calen Pennington committed
-