Sha256: eb7da99398d8a584821caa9d7df7ddf65c7ceea081b5b6021c60a1f93adf68a3

Contents?: true

Size: 654 Bytes

Versions: 4

Compression:

Stored size: 654 Bytes

Contents

Feature: Development Reloading

  In order to quickly develop applications
  As a developer
  I want the application to reload itself in development

  @requires-reloading
  Scenario: Reloading an updated model that a resource points to
    Given a configuration of:
    """
      ActiveAdmin.register Post
    """
    And I am logged in
    And I create a new post with the title ""
    Then I should see a successful create flash
    Given I add "validates_presence_of :title" to the "post" model
    And I create a new post with the title ""
    Then I should not see a successful create flash
    And I should see a validation error "can't be blank"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
andrewroth_activeadmin-0.3.4.4 features/development_reloading.feature
andrewroth_activeadmin-0.3.4.3 features/development_reloading.feature
andrewroth_activeadmin-0.3.4.2 features/development_reloading.feature
andrewroth_activeadmin-0.3.4.1 features/development_reloading.feature