Sha256: ebf5029346a1f6f118e1091375f7b063073aae22ad2231011a209cff560f708b
Contents?: true
Size: 754 Bytes
Versions: 1
Compression:
Stored size: 754 Bytes
Contents
@completed Feature: Validation: validates_presence_of The validates_presence_of validation specifies that a given attribute must be provided (i.e. not blank) Background: Given the following document definition: """ class Article < Recliner::Document property :title, String validates_presence_of :title end """ Scenario: validation requirements met When I create an instance of "Article" And I set its title to "Article title" Then the instance should be valid Scenario: validation requirements failing When I create an instance of "Article" And I set its title to "" Then the instance should not be valid And its errors should include "Title can't be blank"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
recliner-0.0.1 | features/validation/presence.feature |