- 03 Aug, 2016 1 commit
-
-
Ned Batchelder committed
-
- 27 Jul, 2016 1 commit
-
-
2. Add site configuration overrides to theming/helpers.py 3. Move microsite.get_value from theming/helpers to site_configuration/helpers 4. Move microsite_configuration.microsite.get_value usages to site_configuration.helpers.values
Saleem Latif committed
-
- 08 Apr, 2016 1 commit
-
-
Ned Batchelder committed
-
- 03 Feb, 2016 1 commit
-
-
ECOM-2810
Peter Fogg committed
-
- 10 Nov, 2015 1 commit
-
-
Please note that this is a squshed commit and the work of: Symbolist, macdiesel, nedbat, doctoryes, muzaffaryousaf and muhammad-ammar
Usman Khalid committed
-
- 21 Oct, 2015 1 commit
-
-
Also remove useless docstrings where they were added to keep pylint quiet.
Ned Batchelder committed
-
- 21 Aug, 2015 1 commit
-
-
Chris Dodge committed
-
- 27 Apr, 2015 1 commit
-
-
Chris Dodge committed
-
- 17 Mar, 2015 1 commit
-
-
Ned Batchelder committed
-
- 14 Mar, 2015 1 commit
-
-
stv committed
-
- 27 Feb, 2015 1 commit
-
-
stv committed
-
- 20 Feb, 2015 1 commit
-
-
stv committed
-
- 04 Feb, 2015 2 commits
-
-
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 -
Calen Pennington committed
-
- 01 Dec, 2014 2 commits
-
-
Sarina Canelake committed
-
Sarina Canelake committed
-
- 30 Oct, 2014 1 commit
-
-
Add the ability for course staff to specify a Survey and make it required so that a student must fill it out before starting the course
Chris Dodge committed
-