FEATURE: show category page options on wizard 'homepage' step

This commit is contained in:
Arpit Jalan
2018-06-14 12:01:56 +05:30
parent 4645cf6b28
commit c7ee70941e
6 changed files with 126 additions and 14 deletions

View File

@@ -252,12 +252,13 @@ describe Wizard::StepUpdater do
context "homepage step" do
it "updates the fields correctly" do
updater = wizard.create_updater('homepage', homepage_style: "categories")
updater = wizard.create_updater('homepage', homepage_style: "categories_and_top_topics")
updater.update
expect(updater).to be_success
expect(wizard.completed_steps?('homepage')).to eq(true)
expect(SiteSetting.top_menu).to eq('categories|latest|new|unread|top')
expect(SiteSetting.desktop_category_page_style).to eq('categories_and_top_topics')
updater = wizard.create_updater('homepage', homepage_style: "latest")
updater.update