diff --git a/cms/djangoapps/contentstore/features/section.feature b/cms/djangoapps/contentstore/features/section.feature
index a91960cd2a..84a9bb991d 100644
--- a/cms/djangoapps/contentstore/features/section.feature
+++ b/cms/djangoapps/contentstore/features/section.feature
@@ -26,6 +26,7 @@ Feature: Create Section
When I click the Edit link for the release date
And I save a new section release date
Then the section release date is updated
+ And I see a "saving" notification
Scenario: Delete section
Given I have opened a new course in Studio
diff --git a/cms/djangoapps/contentstore/features/section.py b/cms/djangoapps/contentstore/features/section.py
index 989c73e010..f41b2dbcd0 100644
--- a/cms/djangoapps/contentstore/features/section.py
+++ b/cms/djangoapps/contentstore/features/section.py
@@ -42,6 +42,12 @@ def i_save_a_new_section_release_date(_step):
world.browser.click_link_by_text('Save')
+@step('I see a "saving" notification')
+def i_see_a_saving_notification(step):
+ saving_css = '.wrapper-notification-saving'
+ assert world.is_css_present(saving_css)
+
+
############ ASSERTIONS ###################
diff --git a/cms/static/coffee/spec/views/overview_spec.coffee b/cms/static/coffee/spec/views/overview_spec.coffee
new file mode 100644
index 0000000000..29f1e49926
--- /dev/null
+++ b/cms/static/coffee/spec/views/overview_spec.coffee
@@ -0,0 +1,63 @@
+describe "Course Overview", ->
+
+ beforeEach ->
+ appendSetFixtures """
+
+ """
+
+ appendSetFixtures """
+
+ """
+
+ appendSetFixtures """
+
+
+ Will Release: 06/12/2013 at 04:00 UTC
+
+ Edit
+
+ """#"
+
+ appendSetFixtures """
+
+
+
Section Release Date
+
+
+
+
+
+
+
+
+
+
+
On the date set above, this section – – will be released to students. Any units marked private will only be visible to admins.