- Feb 06, 2015
-
-
Christine Lytwynec authored
-
Anton Stupak authored
TNL-1353: Fix annotator dependency.
-
ahsan-ul-haq authored
Problem with Adaptive Hint is inaccessible
-
Shrhawk authored
Quote the starts with expression id^
-
Syed Hassan Raza authored
TNL-1240
-
- Feb 05, 2015
-
-
Christine Lytwynec authored
re-shard cms lettuce tests back to 1 shards
-
Christine Lytwynec authored
-
Jesse Zoldak authored
Revert "Add pylint plugin to check whether setUp is called in ...
-
Jesse Zoldak authored
This reverts commit a92ca9d7.
-
Brian Talbot authored
Upgrade: Font Awesome 4.3.0
-
Jesse Zoldak authored
Fix pep8 violation
-
Jesse Zoldak authored
-
Jesse Zoldak authored
Use new modulestore override paradigm in the new testcase
-
Jesse Zoldak authored
-
polesye authored
-
Anton Stupak authored
Update default video that appears when adding a new Video component
-
polesye authored
-
Will Daly authored
Info-level logging for certificate management commands
-
Will Daly authored
-
- Feb 04, 2015
-
-
Calen Pennington authored
Clean up ModuleStoreTestCase
-
Sarina Canelake authored
Update privacy policy date to the most recent
-
Sarina Canelake authored
-
Christine Lytwynec authored
-
Akiva Leffert authored
-
David Baumgold authored
Internationalize aria-label attributes
-
Ahsan Ulhaq authored
Remove the <p> and label from textline tnl-1074
-
Ahsan Ulhaq authored
-
Ahsan Ulhaq authored
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-ul-haq authored
Change name and email modal couple of accessibilty issues
-
Sarina Canelake authored
(WIP) Unicode fixes for log messages with username and other unicode input
-
Christina Roberts authored
Delete unused student_profile API.
-
Davorin Šego authored
Add dcikatic, dsego and mjevtic to the AUTHORS file
-
Davorin Sego authored
-
Davorin Šego authored
Search form accessibility
-
David Baumgold authored
-
Calen Pennington authored
-
Calen Pennington authored
-
Calen Pennington authored
-
Calen Pennington authored
-
Calen Pennington authored
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]
-