1.1.0¶ ↑
-
Upgrade to minitest 5
-
Add minitest-matchers_vaccine support
-
Add support for Ruby 2.1 and 2.2
1.0.0 - February 27, 2013¶ ↑
-
Add
validate_exclusion_of
matcher. -
Add
validate_inclusion_of
matcher. -
Add
validate_associated
matcher. -
Add
with_message
option to all the matchers. -
Add
on
option to all the matchers. -
Add support for activerecord and activemodel 3.2.x, 4.0.0 and edge.
-
Add support for Ruby 1.9.3, 2.0.0, ruby-head, rbx-19mode.
-
Add
validate_uniqueness_of
matcher. -
Add
scoped_to
option tovalidate_uniqueness_of
matcher. -
Add
case_insensitive
option tovalidate_uniqueness_of
matcher.
0.0.1 - October 13, 2012¶ ↑
-
Add
validate_presence_of
matcher. -
Add
validate_acceptance_of
matcher. -
Add
accepts_with(value)
option toValidateAcceptanceMatcher
. -
Add
validate_confirmation_of
matcher. -
Add
validate_length_of
matcher. -
Add
validate_size_of
alias tovalidate_length_of
. -
Add
ensure_length_of
andensure_size_of
aliases tovalidate_length_of
. -
Add
with_minimum
option toValidateLengthMatcher
. -
Add
with_min
andis_at_least
aliases toValidateLengthMatcher#with_minimum
. -
Add
with_maximum
option toValidateLengthMatcher
. -
Add
with_max
andis_at_most
aliases toValidateLengthMatcher#with_maximum
. -
Add
within
option toValidateLengthMatcher
. -
Add
in
alias toValidateLengthMatcher#within
. -
Raise
ArgumentError
if the given value forValidateLengthMatcher#within
is not aRange
. -
Add
is
option toValidateLengthMatcher
. -
Add
is_equal_to
alias toValidateLengthMatcher#is
. -
Add
validate_format_of
matcher. -
Raise
ArgumentError
if no option is given forvalidate_length_of
matcher. -
Add
to_allow
andto_not_allow
options toValidateFormatMatcher
. -
Raise
ArgumentError
if no option is given forvalidate_format_of
matcher. -
Raise error if
to_allow
andto_not_allow
options are called at once.