Sha256: 9eab8a463d39dcf8988539ee0d104eb49dcef2927458831c23b99c6ac7937b4e
Contents?: true
Size: 995 Bytes
Versions: 9
Compression:
Stored size: 995 Bytes
Contents
Feature: Registering Assets Registering CSS and JS files Background: Given a configuration of: """ ActiveAdmin.register Post """ And I am logged in Scenario: Viewing default asset files When I am on the index page for posts Then I should see the css file "admin/active_admin.css" Then I should see the js file "active_admin_vendor.js" Then I should see the js file "active_admin.js" Scenario: Registering a CSS file Given a configuration of: """ ActiveAdmin.application.register_stylesheet "some-random-css.css" ActiveAdmin.register Post """ When I am on the index page for posts Then I should see the css file "some-random-css.css" Scenario: Registering a JS file Given a configuration of: """ ActiveAdmin.application.register_javascript "some-random-js.js" ActiveAdmin.register Post """ When I am on the index page for posts Then I should see the js file "some-random-js.js"
Version data entries
9 entries across 9 versions & 4 rubygems