This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Require fields. | |
it_should_require :wish, :author, :title, :body, :signature | |
# Validate string lengths | |
it_should_validate_strings :body => 1024, :title => 255, :signature => 25 | |
# Strings can be absent. Default length is 255, like Rails. | |
it_should_validate_strings :story => 10000, | |
:blurb => {:optional => true}, | |
:tagline => {:optional => true} |
NewerOlder