diff --git a/lms/djangoapps/courseware/features/homepage.feature b/lms/djangoapps/courseware/features/homepage.feature index fd845b765b..c4df77842d 100644 --- a/lms/djangoapps/courseware/features/homepage.feature +++ b/lms/djangoapps/courseware/features/homepage.feature @@ -21,19 +21,3 @@ Feature: LMS.Homepage for web users | faq | FAQ | | contact | Contact| | press | Press | - - - # TODO: test according to domain or policy - Scenario: User can see the partner institutions - Given I visit the homepage - Then I should see the following Partners in the Partners section - | Partner | - | MITx | - | HarvardX | - | BerkeleyX | - | UTx | - | WellesleyX | - | GeorgetownX | - - # # TODO: Add scenario that tests the courses available - # # using a policy or a configuration file diff --git a/lms/djangoapps/courseware/features/homepage.py b/lms/djangoapps/courseware/features/homepage.py index bb01982191..aea1004c0e 100644 --- a/lms/djangoapps/courseware/features/homepage.py +++ b/lms/djangoapps/courseware/features/homepage.py @@ -5,14 +5,6 @@ from lettuce import world, step from nose.tools import assert_in, assert_equals # pylint: disable=E0611 -@step(u'I should see the following Partners in the Partners section') -def i_should_see_partner(step): - partners = world.browser.find_by_css(".partner .name span") - names = set(span.html for span in partners) - for partner in step.hashes: - assert_in(partner['Partner'], names) - - @step(u'I should see the following links and ids') def should_see_a_link_called(step): for link_id_pair in step.hashes: diff --git a/lms/templates/index.html b/lms/templates/index.html index 56d08ce110..87437fac4f 100644 --- a/lms/templates/index.html +++ b/lms/templates/index.html @@ -52,118 +52,9 @@ -
+
- ## Disable university partner logos and sites for non-edX sites - % if not self.theme_enabled(): -

${_('Explore free courses from {span_start}{platform_name}{span_end} universities').format(platform_name="edX", span_start='', span_end='')}

- -
-
    -
  1. - - -
    - MITx -
    -
    -
  2. -
  3. - - -
    - HarvardX -
    -
    -
  4. -
  5. - - -
    - BerkeleyX -
    -
    -
  6. -
  7. - - -
    - UTx -
    -
    -
  8. -
  9. - - -
    - McGillX -
    -
    -
  10. -
  11. - - -
    - ANUx -
    -
    -
  12. -
- -
- -
    -
  1. - - -
    - WellesleyX -
    -
    -
  2. -
  3. - - -
    - GeorgetownX -
    -
    -
  4. -
  5. - - -
    - University of TorontoX -
    -
    -
  6. -
  7. - - -
    - EPFLx -
    -
    -
  8. -
  9. - - -
    - DelftX -
    -
    -
  10. -
  11. - - -
    - RiceX -
    -
    -
  12. -
-
- % endif + ## NOTE: To put a title here surround in

tags % if settings.FEATURES.get('COURSES_ARE_BROWSABLE'):