Sha256: 567d5a0c0f1b4585921a482635492d66514c898123dd5c7bc1d2eaeae58d1db9
Contents?: true
Size: 1.5 KB
Versions: 7
Compression:
Stored size: 1.5 KB
Contents
require 'spec_helper' describe "General Settings", type: :feature, js: true do stub_authorization! let!(:store) do create(:store, name: 'Test Store', url: 'test.example.org', mail_from_address: 'test@example.org') end before(:each) do visit spree.admin_path click_link "Settings" click_link "General Settings" end context "visiting general settings (admin)" do it "should have the right content" do expect(page).to have_content("General Settings") expect(page).to have_field("store_name", with: "Test Store") expect(page).to have_field("store_url", with: "test.example.org") expect(page).to have_field("store_mail_from_address", with: "test@example.org") end end context "editing general settings (admin)" do it "should be able to update the site name" do fill_in "store_name", with: "Spree Demo Site99" fill_in "store_mail_from_address", with: "spree@example.org" click_button "Update" assert_successful_update_message(:general_settings) expect(page).to have_field("store_name", with: "Spree Demo Site99") expect(page).to have_field("store_mail_from_address", with: "spree@example.org") end end context "clearing the cache" do it "should clear the cache" do expect(page).to_not have_content(Spree.t(:clear_cache_ok)) expect(page).to have_content(Spree.t(:clear_cache_warning)) click_button "Clear Cache" expect(page).to have_content(Spree.t(:clear_cache_ok)) end end end
Version data entries
7 entries across 7 versions & 1 rubygems