Sha256: ca7387536a05597b6a706234109114a9c44e1342d232f0895f57f600bb7f80a2
Contents?: true
Size: 1.75 KB
Versions: 3
Compression:
Stored size: 1.75 KB
Contents
@site_title 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 = "/admin" """ When I am on the dashboard And I should see the site title "My Great Site" And I follow "My Great Site" Then I should see the site title "My Great Site" 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 = proc { "Hello #{controller.current_admin_user.try(:email) || 'you!'}" } """ 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-rails-1.7.2 | features/site_title.feature |
activeadmin-rails-1.7.1 | features/site_title.feature |
activeadmin-rails-1.7.0 | features/site_title.feature |