Sha256: e1b42f37ade7e66eff04385af066cd0a37980d74e71bcc21c28671725e2bda9b
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
Feature: Site title As a developer In order to customize the site title I want to set it in the configuration Background: Given I am logged in Scenario: Set the site title and site title link Given a configuration of: """ ActiveAdmin.application.site_title = "My Great Site" ActiveAdmin.application.site_title_link = "/" """ When I am on the dashboard And I should see the site title "My Great Site" When I follow "My Great Site" Then I should see "Ruby on Rails: Welcome aboard" Scenario: Set the site title image Given a configuration of: """ ActiveAdmin.application.site_title_image = "http://railscasts.com/assets/episodes/stills/284-active-admin.png?1316476106" """ When I am on the dashboard And I should not see the site title "My Great Site" And I should see the site title image "http://railscasts.com/assets/episodes/stills/284-active-admin.png?1316476106" Scenario: Set the site title image with link Given a configuration of: """ ActiveAdmin.application.site_title_link = "http://www.google.com" ActiveAdmin.application.site_title_image = "http://railscasts.com/assets/episodes/stills/284-active-admin.png?1316476106" """ When I am on the dashboard And I should see the site title image "http://railscasts.com/assets/episodes/stills/284-active-admin.png?1316476106" And I should see the site title image linked to "http://www.google.com" Scenario: Set the site title to a proc Given a configuration of: """ ActiveAdmin.application.site_title_image = nil # Configuration is not reset between scenarios ActiveAdmin.application.site_title = proc { "Hello #{controller.current_admin_user.email}" } """ When I am on the dashboard And I should see the site title "Hello admin@example.com"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activeadmin-0.4.4 | features/site_title.feature |
activeadmin-0.4.3 | features/site_title.feature |
activeadmin-0.4.2 | features/site_title.feature |