Sha256: eb8c1f855936dd2d0b02f7a51b35aeeed52d9f22a8759eb89b6f901db5ee38ac
Contents?: true
Size: 612 Bytes
Versions: 41
Compression:
Stored size: 612 Bytes
Contents
require 'spec_helper' feature "Locale management" do scenario "I can enable locale", js: true do login_admin click_link 'Locales' page.should have_content('Displaying 1 Locale') enable_popular_locale("pl") click_link 'Enabled' page.should have_content('Displaying all 2 Locales') end scenario "I can disable locale", js: true do login_admin click_link 'Locales' page.should have_content('Displaying 1 Locale') uncheck 'activeadmin_selleo_cms_locale_enabled_en' wait_for_ajax click_link 'Enabled' page.should have_content('No Locales found') end end
Version data entries
41 entries across 41 versions & 1 rubygems