aequitas 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rvmrc +1 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.rdoc +125 -0
- data/Rakefile +25 -0
- data/VERSION +1 -0
- data/aequitas.gemspec +20 -0
- data/lib/aequitas.rb +80 -0
- data/lib/aequitas/class_methods.rb +26 -0
- data/lib/aequitas/context.rb +53 -0
- data/lib/aequitas/contextual_rule_set.rb +221 -0
- data/lib/aequitas/exceptions.rb +10 -0
- data/lib/aequitas/macros.rb +466 -0
- data/lib/aequitas/message_transformer.rb +127 -0
- data/lib/aequitas/rule.rb +153 -0
- data/lib/aequitas/rule/absence.rb +14 -0
- data/lib/aequitas/rule/absence/blank.rb +21 -0
- data/lib/aequitas/rule/absence/nil.rb +21 -0
- data/lib/aequitas/rule/acceptance.rb +36 -0
- data/lib/aequitas/rule/block.rb +33 -0
- data/lib/aequitas/rule/confirmation.rb +41 -0
- data/lib/aequitas/rule/format.rb +81 -0
- data/lib/aequitas/rule/format/proc.rb +28 -0
- data/lib/aequitas/rule/format/regexp.rb +44 -0
- data/lib/aequitas/rule/formats/email.rb +52 -0
- data/lib/aequitas/rule/formats/url.rb +14 -0
- data/lib/aequitas/rule/guard.rb +51 -0
- data/lib/aequitas/rule/length.rb +87 -0
- data/lib/aequitas/rule/length/equal.rb +46 -0
- data/lib/aequitas/rule/length/maximum.rb +46 -0
- data/lib/aequitas/rule/length/minimum.rb +46 -0
- data/lib/aequitas/rule/length/range.rb +46 -0
- data/lib/aequitas/rule/method.rb +31 -0
- data/lib/aequitas/rule/numericalness.rb +85 -0
- data/lib/aequitas/rule/numericalness/equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/greater_than.rb +30 -0
- data/lib/aequitas/rule/numericalness/greater_than_or_equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/integer.rb +37 -0
- data/lib/aequitas/rule/numericalness/less_than.rb +30 -0
- data/lib/aequitas/rule/numericalness/less_than_or_equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/non_integer.rb +64 -0
- data/lib/aequitas/rule/numericalness/not_equal.rb +30 -0
- data/lib/aequitas/rule/presence.rb +14 -0
- data/lib/aequitas/rule/presence/not_blank.rb +21 -0
- data/lib/aequitas/rule/presence/not_nil.rb +21 -0
- data/lib/aequitas/rule/primitive_type.rb +28 -0
- data/lib/aequitas/rule/skip_condition.rb +104 -0
- data/lib/aequitas/rule/within.rb +28 -0
- data/lib/aequitas/rule/within/range.rb +53 -0
- data/lib/aequitas/rule/within/range/bounded.rb +25 -0
- data/lib/aequitas/rule/within/range/unbounded_begin.rb +25 -0
- data/lib/aequitas/rule/within/range/unbounded_end.rb +25 -0
- data/lib/aequitas/rule/within/set.rb +39 -0
- data/lib/aequitas/rule_set.rb +80 -0
- data/lib/aequitas/support/blank.rb +22 -0
- data/lib/aequitas/support/equalizable.rb +113 -0
- data/lib/aequitas/support/ordered_hash.rb +438 -0
- data/lib/aequitas/version.rb +5 -0
- data/lib/aequitas/violation.rb +116 -0
- data/lib/aequitas/violation_set.rb +123 -0
- data/lib/aequitas/virtus.rb +29 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor.rb +41 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb +17 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb +25 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb +27 -0
- data/spec/integration/aequitas/macros/validates_absence_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_acceptance_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_confirmation_of_spec.rb +25 -0
- data/spec/integration/aequitas/macros/validates_format_of_spec.rb +87 -0
- data/spec/integration/aequitas/macros/validates_length_of.rb +77 -0
- data/spec/integration/aequitas/macros/validates_numericalness_of_spec.rb +221 -0
- data/spec/integration/aequitas/macros/validates_presence_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_with_block.rb +23 -0
- data/spec/integration/aequitas/macros/validates_with_method.rb +19 -0
- data/spec/integration/aequitas/macros/validates_within.rb +87 -0
- data/spec/integration/shared/macros/integration_spec.rb +67 -0
- data/spec/integration/virtus/boolean/presence_spec.rb +49 -0
- data/spec/integration/virtus/string/format/email_address_spec.rb +55 -0
- data/spec/integration/virtus/string/format/regexp_spec.rb +55 -0
- data/spec/integration/virtus/string/format/url_spec.rb +55 -0
- data/spec/integration/virtus/string/length/equal_spec.rb +49 -0
- data/spec/integration/virtus/string/length/range_spec.rb +49 -0
- data/spec/integration/virtus/string/presence_spec.rb +49 -0
- data/spec/rcov.opts +6 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/suite.rb +5 -0
- data/spec/unit/aequitas/rule/absence/blank_spec.rb +45 -0
- data/spec/unit/aequitas/rule/acceptance_spec.rb +71 -0
- data/spec/unit/aequitas/rule/confirmation_spec.rb +80 -0
- data/spec/unit/aequitas/rule/guard_spec.rb +120 -0
- data/spec/unit/aequitas/rule/skip_condition_spec.rb +170 -0
- data/spec/unit/aequitas/rule_spec.rb +40 -0
- data/spec/unit/aequitas/support/blank_spec.rb +83 -0
- data/spec/unit/aequitas/support/equalizable/equalizer_spec.rb +21 -0
- data/spec/unit/aequitas/support/equalizable_spec.rb +67 -0
- data/spec/unit/aequitas/violation_set_spec.rb +154 -0
- data/spec_legacy/fixtures/barcode.rb +40 -0
- data/spec_legacy/fixtures/basketball_court.rb +58 -0
- data/spec_legacy/fixtures/basketball_player.rb +34 -0
- data/spec_legacy/fixtures/beta_tester_account.rb +33 -0
- data/spec_legacy/fixtures/bill_of_landing.rb +47 -0
- data/spec_legacy/fixtures/boat_dock.rb +26 -0
- data/spec_legacy/fixtures/city.rb +24 -0
- data/spec_legacy/fixtures/company.rb +93 -0
- data/spec_legacy/fixtures/corporate_world.rb +39 -0
- data/spec_legacy/fixtures/country.rb +24 -0
- data/spec_legacy/fixtures/ethernet_frame.rb +56 -0
- data/spec_legacy/fixtures/event.rb +44 -0
- data/spec_legacy/fixtures/g3_concert.rb +57 -0
- data/spec_legacy/fixtures/jabberwock.rb +27 -0
- data/spec_legacy/fixtures/kayak.rb +28 -0
- data/spec_legacy/fixtures/lernean_hydra.rb +39 -0
- data/spec_legacy/fixtures/llama_spaceship.rb +15 -0
- data/spec_legacy/fixtures/mathematical_function.rb +34 -0
- data/spec_legacy/fixtures/memory_object.rb +30 -0
- data/spec_legacy/fixtures/mittelschnauzer.rb +39 -0
- data/spec_legacy/fixtures/motor_launch.rb +21 -0
- data/spec_legacy/fixtures/multibyte.rb +16 -0
- data/spec_legacy/fixtures/page.rb +32 -0
- data/spec_legacy/fixtures/phone_number.rb +28 -0
- data/spec_legacy/fixtures/pirogue.rb +28 -0
- data/spec_legacy/fixtures/programming_language.rb +83 -0
- data/spec_legacy/fixtures/reservation.rb +38 -0
- data/spec_legacy/fixtures/scm_operation.rb +56 -0
- data/spec_legacy/fixtures/sms_message.rb +22 -0
- data/spec_legacy/fixtures/udp_packet.rb +49 -0
- data/spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb +90 -0
- data/spec_legacy/integration/absent_field_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb +196 -0
- data/spec_legacy/integration/acceptance_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +57 -0
- data/spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb +49 -0
- data/spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +100 -0
- data/spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb +45 -0
- data/spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb +35 -0
- data/spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +70 -0
- data/spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb +142 -0
- data/spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb +45 -0
- data/spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb +22 -0
- data/spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +48 -0
- data/spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb +35 -0
- data/spec_legacy/integration/automatic_validation/spec_helper.rb +57 -0
- data/spec_legacy/integration/block_validator/block_validator_spec.rb +32 -0
- data/spec_legacy/integration/block_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/conditional_validation/if_condition_spec.rb +63 -0
- data/spec_legacy/integration/conditional_validation/spec_helper.rb +5 -0
- data/spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb +76 -0
- data/spec_legacy/integration/confirmation_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/datamapper_models/association_validation_spec.rb +29 -0
- data/spec_legacy/integration/datamapper_models/inheritance_spec.rb +82 -0
- data/spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb +13 -0
- data/spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb +24 -0
- data/spec_legacy/integration/duplicated_validations/spec_helper.rb +5 -0
- data/spec_legacy/integration/format_validator/email_format_validator_spec.rb +139 -0
- data/spec_legacy/integration/format_validator/format_validator_spec.rb +64 -0
- data/spec_legacy/integration/format_validator/regexp_validator_spec.rb +33 -0
- data/spec_legacy/integration/format_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/format_validator/url_format_validator_spec.rb +93 -0
- data/spec_legacy/integration/length_validator/default_value_spec.rb +14 -0
- data/spec_legacy/integration/length_validator/equality_spec.rb +87 -0
- data/spec_legacy/integration/length_validator/error_message_spec.rb +22 -0
- data/spec_legacy/integration/length_validator/maximum_spec.rb +49 -0
- data/spec_legacy/integration/length_validator/minimum_spec.rb +54 -0
- data/spec_legacy/integration/length_validator/range_spec.rb +87 -0
- data/spec_legacy/integration/length_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/method_validator/method_validator_spec.rb +242 -0
- data/spec_legacy/integration/method_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb +65 -0
- data/spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb +41 -0
- data/spec_legacy/integration/numeric_validator/float_type_spec.rb +90 -0
- data/spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/integer_only_true_spec.rb +91 -0
- data/spec_legacy/integration/numeric_validator/integer_type_spec.rb +86 -0
- data/spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/primitive_validator/primitive_validator_spec.rb +92 -0
- data/spec_legacy/integration/primitive_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +118 -0
- data/spec_legacy/integration/required_field_validator/association_spec.rb +69 -0
- data/spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb +164 -0
- data/spec_legacy/integration/required_field_validator/date_type_value_spec.rb +127 -0
- data/spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb +127 -0
- data/spec_legacy/integration/required_field_validator/float_type_value_spec.rb +131 -0
- data/spec_legacy/integration/required_field_validator/integer_type_value_spec.rb +99 -0
- data/spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb +35 -0
- data/spec_legacy/integration/required_field_validator/shared_examples.rb +26 -0
- data/spec_legacy/integration/required_field_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/required_field_validator/string_type_value_spec.rb +167 -0
- data/spec_legacy/integration/required_field_validator/text_type_value_spec.rb +49 -0
- data/spec_legacy/integration/shared/default_validation_context.rb +13 -0
- data/spec_legacy/integration/shared/valid_and_invalid_model.rb +35 -0
- data/spec_legacy/integration/uniqueness_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb +116 -0
- data/spec_legacy/integration/within_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/within_validator/within_validator_spec.rb +168 -0
- data/spec_legacy/public/resource_spec.rb +105 -0
- data/spec_legacy/spec.opts +4 -0
- data/spec_legacy/spec_helper.rb +29 -0
- data/spec_legacy/unit/contextual_validators/emptiness_spec.rb +50 -0
- data/spec_legacy/unit/contextual_validators/execution_spec.rb +48 -0
- data/spec_legacy/unit/contextual_validators/spec_helper.rb +37 -0
- data/spec_legacy/unit/generic_validator/equality_operator_spec.rb +26 -0
- data/spec_legacy/unit/generic_validator/optional_spec.rb +54 -0
- data/spec_legacy/unit/validators/within_validator_spec.rb +23 -0
- data/spec_legacy/unit/violation_set/adding_spec.rb +54 -0
- data/spec_legacy/unit/violation_set/emptiness_spec.rb +38 -0
- data/spec_legacy/unit/violation_set/enumerable_spec.rb +32 -0
- data/spec_legacy/unit/violation_set/reading_spec.rb +35 -0
- data/spec_legacy/unit/violation_set/respond_to_spec.rb +15 -0
- data/tasks/spec.rake +38 -0
- data/tasks/yard.rake +9 -0
- data/tasks/yardstick.rake +19 -0
- metadata +302 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Rule' do
|
4
|
+
describe "when types and fields are equal" do
|
5
|
+
it "returns true" do
|
6
|
+
DataMapper::Validations::Rule::Presence.new(:name).
|
7
|
+
should == DataMapper::Validations::Rule::Presence.new(:name)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
|
12
|
+
describe "when types differ" do
|
13
|
+
it "returns false" do
|
14
|
+
DataMapper::Validations::Rule::Presence.new(:name).
|
15
|
+
should_not == DataMapper::Validations::Rule::Uniqueness.new(:name)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
|
20
|
+
describe "when property names differ" do
|
21
|
+
it "returns false" do
|
22
|
+
DataMapper::Validations::Rule::Presence.new(:first_name).
|
23
|
+
should_not == DataMapper::Validations::Rule::Presence.new(:last_name)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Rule::Generic', '#optional?' do
|
4
|
+
def validator(opts = {})
|
5
|
+
DataMapper::Validations::Rule::Length.new(:name, opts)
|
6
|
+
end
|
7
|
+
|
8
|
+
describe 'allowing blank' do
|
9
|
+
subject do
|
10
|
+
validator(
|
11
|
+
:allow_blank => true
|
12
|
+
)
|
13
|
+
end
|
14
|
+
|
15
|
+
it { subject.optional?("" ).should be }
|
16
|
+
it { subject.optional?(nil).should be }
|
17
|
+
end
|
18
|
+
|
19
|
+
describe 'allowing nil' do
|
20
|
+
subject do
|
21
|
+
validator(
|
22
|
+
:allow_nil => true
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
it { subject.optional?("" ).should_not be }
|
27
|
+
it { subject.optional?(nil).should be }
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'allowing blank, but now allowing nil' do
|
31
|
+
subject do
|
32
|
+
validator(
|
33
|
+
:allow_blank => true,
|
34
|
+
:allow_nil => false
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
it { subject.optional?("" ).should be }
|
39
|
+
it { subject.optional?(nil).should_not be }
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'allowing nil, but now allowing blank' do
|
43
|
+
subject do
|
44
|
+
validator(
|
45
|
+
:allow_blank => false,
|
46
|
+
:allow_nil => true
|
47
|
+
)
|
48
|
+
end
|
49
|
+
|
50
|
+
it { subject.optional?("" ).should_not be }
|
51
|
+
it { subject.optional?(nil).should be }
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Rule::Within' do
|
4
|
+
it 'should allow Sets to be passed to the :set option' do
|
5
|
+
types = Set.new(%w(home mobile business))
|
6
|
+
|
7
|
+
@model = Class.new do
|
8
|
+
include DataMapper::Resource
|
9
|
+
|
10
|
+
def self.name
|
11
|
+
'WithinValidatorClass'
|
12
|
+
end
|
13
|
+
|
14
|
+
property :id, DataMapper::Property::Serial
|
15
|
+
property :name, String, :auto_validation => false
|
16
|
+
end.new
|
17
|
+
|
18
|
+
validator = DataMapper::Validations::Rule::Within.new(:name, :set => types)
|
19
|
+
validator.call(@model)
|
20
|
+
|
21
|
+
@model.errors.should_not be_empty
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::ViolationSet' do
|
5
|
+
before :all do
|
6
|
+
@model = DataMapper::Validations::ViolationSet.new(Object.new)
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "after first error being added" do
|
10
|
+
before :all do
|
11
|
+
@model.add(:property, "can't be valid, no way")
|
12
|
+
end
|
13
|
+
|
14
|
+
it "is no longer empty" do
|
15
|
+
@model.should_not be_empty
|
16
|
+
end
|
17
|
+
|
18
|
+
it "adds error message to list of errors for given property name" do
|
19
|
+
@model.on(:property).should == ["can't be valid, no way"]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
|
24
|
+
describe "after second error being added" do
|
25
|
+
before :all do
|
26
|
+
@model.add(:property, "can't be valid, no way")
|
27
|
+
@model.add(:property, "something else is wrong")
|
28
|
+
end
|
29
|
+
|
30
|
+
it "is no longer empty" do
|
31
|
+
@model.should_not be_empty
|
32
|
+
end
|
33
|
+
|
34
|
+
it "appends error message to list of errors for given property name" do
|
35
|
+
@model.on(:property).should == ["can't be valid, no way", "something else is wrong"]
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
describe "when duplicate error being added" do
|
41
|
+
before :all do
|
42
|
+
@model.add(:property, "can't be valid, no way")
|
43
|
+
@model.add(:property, "can't be valid, no way")
|
44
|
+
end
|
45
|
+
|
46
|
+
it "is no longer empty" do
|
47
|
+
@model.should_not be_empty
|
48
|
+
end
|
49
|
+
|
50
|
+
it "DOES NOT allow duplication" do
|
51
|
+
@model.on(:property).should == ["can't be valid, no way"]
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::ViolationSet' do
|
5
|
+
before :all do
|
6
|
+
@model = DataMapper::Validations::ViolationSet.new(Object.new)
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "initially" do
|
10
|
+
it "is empty" do
|
11
|
+
@model.should be_empty
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# Not sure if this is worth having at all,
|
16
|
+
# just keeping old spec suite bits in place
|
17
|
+
# if they make no harm — MK
|
18
|
+
describe "after enquiry" do
|
19
|
+
before :all do
|
20
|
+
@model.on(:property)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "is still empty" do
|
24
|
+
@model.should be_empty
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
describe "after errors being added" do
|
30
|
+
before :all do
|
31
|
+
@model.add(:property, "can't be valid, no way")
|
32
|
+
end
|
33
|
+
|
34
|
+
it "is no longer empty" do
|
35
|
+
@model.should_not be_empty
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::ViolationSet' do
|
5
|
+
before :all do
|
6
|
+
@model = DataMapper::Validations::ViolationSet.new(Object.new)
|
7
|
+
@model.add(:ip_address, "must have valid format")
|
8
|
+
@model.add(:full_name, "can't be blank")
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "#each" do
|
12
|
+
it "iterates over properties and yields error message arrays" do
|
13
|
+
params = []
|
14
|
+
@model.each do |param|
|
15
|
+
params << param
|
16
|
+
end
|
17
|
+
|
18
|
+
params.should == [ [ 'must have valid format' ], [ "can't be blank" ] ]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
describe "#map" do
|
24
|
+
before :all do
|
25
|
+
@model.add(:ip_address, "must belong to a local subnet")
|
26
|
+
end
|
27
|
+
it "maps error message arrays using provided block" do
|
28
|
+
projection = @model.map { |ary| ary }
|
29
|
+
projection.should == [ [ 'must have valid format', 'must belong to a local subnet' ], [ "can't be blank" ] ]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
shared_examples_for 'a validation error reader' do
|
5
|
+
context 'and that property has no associated errors' do
|
6
|
+
it 'should return an empty array' do
|
7
|
+
@errors[@property].should == []
|
8
|
+
end
|
9
|
+
end
|
10
|
+
context 'and that property has associated error(s)' do
|
11
|
+
it 'should return a non empty array' do
|
12
|
+
@errors.add(@property.to_sym, 'invalid')
|
13
|
+
@errors[@property].should_not be_empty
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe 'DataMapper::Validations::ViolationSet' do
|
19
|
+
describe '[]' do
|
20
|
+
describe 'when passing the argument as a String' do
|
21
|
+
before(:each) do
|
22
|
+
@errors = DataMapper::Validations::ViolationSet.new(Object.new)
|
23
|
+
@property = 'name'
|
24
|
+
end
|
25
|
+
it_should_behave_like 'a validation error reader'
|
26
|
+
end
|
27
|
+
describe 'when passing the argument as a Symbol' do
|
28
|
+
before(:each) do
|
29
|
+
@errors = DataMapper::Validations::ViolationSet.new(Object.new)
|
30
|
+
@property = :name
|
31
|
+
end
|
32
|
+
it_should_behave_like 'a validation error reader'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::ViolationSet#respond_to?' do
|
4
|
+
|
5
|
+
subject { DataMapper::Validations::ViolationSet.new(Object.new) }
|
6
|
+
|
7
|
+
it 'should look for the method in self' do
|
8
|
+
subject.should respond_to(:full_messages)
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'should delegate lookup to the underlying errors hash' do
|
12
|
+
subject.should respond_to(:size)
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
data/tasks/spec.rake
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
spec_defaults = lambda do |spec|
|
2
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
3
|
+
spec.libs << 'lib' << 'spec'
|
4
|
+
spec.spec_opts << '--options' << 'spec/spec.opts'
|
5
|
+
end
|
6
|
+
|
7
|
+
begin
|
8
|
+
require 'spec/rake/spectask'
|
9
|
+
|
10
|
+
Spec::Rake::SpecTask.new(:spec, &spec_defaults)
|
11
|
+
rescue LoadError
|
12
|
+
task :spec do
|
13
|
+
abort 'rspec is not available. In order to run spec, you must: gem install rspec'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
begin
|
18
|
+
require 'rcov'
|
19
|
+
require 'spec/rake/verify_rcov'
|
20
|
+
|
21
|
+
Spec::Rake::SpecTask.new(:rcov) do |rcov|
|
22
|
+
spec_defaults.call(rcov)
|
23
|
+
rcov.rcov = true
|
24
|
+
rcov.rcov_opts = File.read('spec/rcov.opts').split(/\s+/)
|
25
|
+
end
|
26
|
+
|
27
|
+
RCov::VerifyTask.new(:verify_rcov => :rcov) do |rcov|
|
28
|
+
rcov.threshold = 100
|
29
|
+
end
|
30
|
+
rescue LoadError
|
31
|
+
%w[ rcov verify_rcov ].each do |name|
|
32
|
+
task name do
|
33
|
+
abort "rcov is not available. In order to run #{name}, you must: gem install rcov"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
task :default => :spec
|
data/tasks/yard.rake
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
begin
|
2
|
+
require 'pathname'
|
3
|
+
require 'yardstick/rake/measurement'
|
4
|
+
require 'yardstick/rake/verify'
|
5
|
+
|
6
|
+
# yardstick_measure task
|
7
|
+
Yardstick::Rake::Measurement.new
|
8
|
+
|
9
|
+
# verify_measurements task
|
10
|
+
Yardstick::Rake::Verify.new do |verify|
|
11
|
+
verify.threshold = 100
|
12
|
+
end
|
13
|
+
rescue LoadError
|
14
|
+
%w[ yardstick_measure verify_measurements ].each do |name|
|
15
|
+
task name.to_s do
|
16
|
+
abort "Yardstick is not available. In order to run #{name}, you must: gem install yardstick"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,302 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aequitas
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Emmanuel Gomez
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-12-14 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: minitest
|
16
|
+
requirement: &70317301205480 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.8'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70317301205480
|
25
|
+
description: Library for validating Ruby objects with rich metadata support.
|
26
|
+
email:
|
27
|
+
- emmanuel.gomez@gmail.com
|
28
|
+
executables: []
|
29
|
+
extensions: []
|
30
|
+
extra_rdoc_files: []
|
31
|
+
files:
|
32
|
+
- .gitignore
|
33
|
+
- .rvmrc
|
34
|
+
- Gemfile
|
35
|
+
- LICENSE
|
36
|
+
- README.rdoc
|
37
|
+
- Rakefile
|
38
|
+
- VERSION
|
39
|
+
- aequitas.gemspec
|
40
|
+
- lib/aequitas.rb
|
41
|
+
- lib/aequitas/class_methods.rb
|
42
|
+
- lib/aequitas/context.rb
|
43
|
+
- lib/aequitas/contextual_rule_set.rb
|
44
|
+
- lib/aequitas/exceptions.rb
|
45
|
+
- lib/aequitas/macros.rb
|
46
|
+
- lib/aequitas/message_transformer.rb
|
47
|
+
- lib/aequitas/rule.rb
|
48
|
+
- lib/aequitas/rule/absence.rb
|
49
|
+
- lib/aequitas/rule/absence/blank.rb
|
50
|
+
- lib/aequitas/rule/absence/nil.rb
|
51
|
+
- lib/aequitas/rule/acceptance.rb
|
52
|
+
- lib/aequitas/rule/block.rb
|
53
|
+
- lib/aequitas/rule/confirmation.rb
|
54
|
+
- lib/aequitas/rule/format.rb
|
55
|
+
- lib/aequitas/rule/format/proc.rb
|
56
|
+
- lib/aequitas/rule/format/regexp.rb
|
57
|
+
- lib/aequitas/rule/formats/email.rb
|
58
|
+
- lib/aequitas/rule/formats/url.rb
|
59
|
+
- lib/aequitas/rule/guard.rb
|
60
|
+
- lib/aequitas/rule/length.rb
|
61
|
+
- lib/aequitas/rule/length/equal.rb
|
62
|
+
- lib/aequitas/rule/length/maximum.rb
|
63
|
+
- lib/aequitas/rule/length/minimum.rb
|
64
|
+
- lib/aequitas/rule/length/range.rb
|
65
|
+
- lib/aequitas/rule/method.rb
|
66
|
+
- lib/aequitas/rule/numericalness.rb
|
67
|
+
- lib/aequitas/rule/numericalness/equal.rb
|
68
|
+
- lib/aequitas/rule/numericalness/greater_than.rb
|
69
|
+
- lib/aequitas/rule/numericalness/greater_than_or_equal.rb
|
70
|
+
- lib/aequitas/rule/numericalness/integer.rb
|
71
|
+
- lib/aequitas/rule/numericalness/less_than.rb
|
72
|
+
- lib/aequitas/rule/numericalness/less_than_or_equal.rb
|
73
|
+
- lib/aequitas/rule/numericalness/non_integer.rb
|
74
|
+
- lib/aequitas/rule/numericalness/not_equal.rb
|
75
|
+
- lib/aequitas/rule/presence.rb
|
76
|
+
- lib/aequitas/rule/presence/not_blank.rb
|
77
|
+
- lib/aequitas/rule/presence/not_nil.rb
|
78
|
+
- lib/aequitas/rule/primitive_type.rb
|
79
|
+
- lib/aequitas/rule/skip_condition.rb
|
80
|
+
- lib/aequitas/rule/within.rb
|
81
|
+
- lib/aequitas/rule/within/range.rb
|
82
|
+
- lib/aequitas/rule/within/range/bounded.rb
|
83
|
+
- lib/aequitas/rule/within/range/unbounded_begin.rb
|
84
|
+
- lib/aequitas/rule/within/range/unbounded_end.rb
|
85
|
+
- lib/aequitas/rule/within/set.rb
|
86
|
+
- lib/aequitas/rule_set.rb
|
87
|
+
- lib/aequitas/support/blank.rb
|
88
|
+
- lib/aequitas/support/equalizable.rb
|
89
|
+
- lib/aequitas/support/ordered_hash.rb
|
90
|
+
- lib/aequitas/version.rb
|
91
|
+
- lib/aequitas/violation.rb
|
92
|
+
- lib/aequitas/violation_set.rb
|
93
|
+
- lib/aequitas/virtus.rb
|
94
|
+
- lib/aequitas/virtus/inline_attribute_rule_extractor.rb
|
95
|
+
- lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb
|
96
|
+
- lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb
|
97
|
+
- lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb
|
98
|
+
- spec/integration/aequitas/macros/validates_absence_of_spec.rb
|
99
|
+
- spec/integration/aequitas/macros/validates_acceptance_of_spec.rb
|
100
|
+
- spec/integration/aequitas/macros/validates_confirmation_of_spec.rb
|
101
|
+
- spec/integration/aequitas/macros/validates_format_of_spec.rb
|
102
|
+
- spec/integration/aequitas/macros/validates_length_of.rb
|
103
|
+
- spec/integration/aequitas/macros/validates_numericalness_of_spec.rb
|
104
|
+
- spec/integration/aequitas/macros/validates_presence_of_spec.rb
|
105
|
+
- spec/integration/aequitas/macros/validates_with_block.rb
|
106
|
+
- spec/integration/aequitas/macros/validates_with_method.rb
|
107
|
+
- spec/integration/aequitas/macros/validates_within.rb
|
108
|
+
- spec/integration/shared/macros/integration_spec.rb
|
109
|
+
- spec/integration/virtus/boolean/presence_spec.rb
|
110
|
+
- spec/integration/virtus/string/format/email_address_spec.rb
|
111
|
+
- spec/integration/virtus/string/format/regexp_spec.rb
|
112
|
+
- spec/integration/virtus/string/format/url_spec.rb
|
113
|
+
- spec/integration/virtus/string/length/equal_spec.rb
|
114
|
+
- spec/integration/virtus/string/length/range_spec.rb
|
115
|
+
- spec/integration/virtus/string/presence_spec.rb
|
116
|
+
- spec/rcov.opts
|
117
|
+
- spec/spec_helper.rb
|
118
|
+
- spec/suite.rb
|
119
|
+
- spec/unit/aequitas/rule/absence/blank_spec.rb
|
120
|
+
- spec/unit/aequitas/rule/acceptance_spec.rb
|
121
|
+
- spec/unit/aequitas/rule/confirmation_spec.rb
|
122
|
+
- spec/unit/aequitas/rule/guard_spec.rb
|
123
|
+
- spec/unit/aequitas/rule/skip_condition_spec.rb
|
124
|
+
- spec/unit/aequitas/rule_spec.rb
|
125
|
+
- spec/unit/aequitas/support/blank_spec.rb
|
126
|
+
- spec/unit/aequitas/support/equalizable/equalizer_spec.rb
|
127
|
+
- spec/unit/aequitas/support/equalizable_spec.rb
|
128
|
+
- spec/unit/aequitas/violation_set_spec.rb
|
129
|
+
- spec_legacy/fixtures/barcode.rb
|
130
|
+
- spec_legacy/fixtures/basketball_court.rb
|
131
|
+
- spec_legacy/fixtures/basketball_player.rb
|
132
|
+
- spec_legacy/fixtures/beta_tester_account.rb
|
133
|
+
- spec_legacy/fixtures/bill_of_landing.rb
|
134
|
+
- spec_legacy/fixtures/boat_dock.rb
|
135
|
+
- spec_legacy/fixtures/city.rb
|
136
|
+
- spec_legacy/fixtures/company.rb
|
137
|
+
- spec_legacy/fixtures/corporate_world.rb
|
138
|
+
- spec_legacy/fixtures/country.rb
|
139
|
+
- spec_legacy/fixtures/ethernet_frame.rb
|
140
|
+
- spec_legacy/fixtures/event.rb
|
141
|
+
- spec_legacy/fixtures/g3_concert.rb
|
142
|
+
- spec_legacy/fixtures/jabberwock.rb
|
143
|
+
- spec_legacy/fixtures/kayak.rb
|
144
|
+
- spec_legacy/fixtures/lernean_hydra.rb
|
145
|
+
- spec_legacy/fixtures/llama_spaceship.rb
|
146
|
+
- spec_legacy/fixtures/mathematical_function.rb
|
147
|
+
- spec_legacy/fixtures/memory_object.rb
|
148
|
+
- spec_legacy/fixtures/mittelschnauzer.rb
|
149
|
+
- spec_legacy/fixtures/motor_launch.rb
|
150
|
+
- spec_legacy/fixtures/multibyte.rb
|
151
|
+
- spec_legacy/fixtures/page.rb
|
152
|
+
- spec_legacy/fixtures/phone_number.rb
|
153
|
+
- spec_legacy/fixtures/pirogue.rb
|
154
|
+
- spec_legacy/fixtures/programming_language.rb
|
155
|
+
- spec_legacy/fixtures/reservation.rb
|
156
|
+
- spec_legacy/fixtures/scm_operation.rb
|
157
|
+
- spec_legacy/fixtures/sms_message.rb
|
158
|
+
- spec_legacy/fixtures/udp_packet.rb
|
159
|
+
- spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb
|
160
|
+
- spec_legacy/integration/absent_field_validator/spec_helper.rb
|
161
|
+
- spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb
|
162
|
+
- spec_legacy/integration/acceptance_validator/spec_helper.rb
|
163
|
+
- spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb
|
164
|
+
- spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb
|
165
|
+
- spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb
|
166
|
+
- spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb
|
167
|
+
- spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb
|
168
|
+
- spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb
|
169
|
+
- spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb
|
170
|
+
- spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb
|
171
|
+
- spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb
|
172
|
+
- spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb
|
173
|
+
- spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb
|
174
|
+
- spec_legacy/integration/automatic_validation/spec_helper.rb
|
175
|
+
- spec_legacy/integration/block_validator/block_validator_spec.rb
|
176
|
+
- spec_legacy/integration/block_validator/spec_helper.rb
|
177
|
+
- spec_legacy/integration/conditional_validation/if_condition_spec.rb
|
178
|
+
- spec_legacy/integration/conditional_validation/spec_helper.rb
|
179
|
+
- spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb
|
180
|
+
- spec_legacy/integration/confirmation_validator/spec_helper.rb
|
181
|
+
- spec_legacy/integration/datamapper_models/association_validation_spec.rb
|
182
|
+
- spec_legacy/integration/datamapper_models/inheritance_spec.rb
|
183
|
+
- spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb
|
184
|
+
- spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb
|
185
|
+
- spec_legacy/integration/duplicated_validations/spec_helper.rb
|
186
|
+
- spec_legacy/integration/format_validator/email_format_validator_spec.rb
|
187
|
+
- spec_legacy/integration/format_validator/format_validator_spec.rb
|
188
|
+
- spec_legacy/integration/format_validator/regexp_validator_spec.rb
|
189
|
+
- spec_legacy/integration/format_validator/spec_helper.rb
|
190
|
+
- spec_legacy/integration/format_validator/url_format_validator_spec.rb
|
191
|
+
- spec_legacy/integration/length_validator/default_value_spec.rb
|
192
|
+
- spec_legacy/integration/length_validator/equality_spec.rb
|
193
|
+
- spec_legacy/integration/length_validator/error_message_spec.rb
|
194
|
+
- spec_legacy/integration/length_validator/maximum_spec.rb
|
195
|
+
- spec_legacy/integration/length_validator/minimum_spec.rb
|
196
|
+
- spec_legacy/integration/length_validator/range_spec.rb
|
197
|
+
- spec_legacy/integration/length_validator/spec_helper.rb
|
198
|
+
- spec_legacy/integration/method_validator/method_validator_spec.rb
|
199
|
+
- spec_legacy/integration/method_validator/spec_helper.rb
|
200
|
+
- spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb
|
201
|
+
- spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb
|
202
|
+
- spec_legacy/integration/numeric_validator/float_type_spec.rb
|
203
|
+
- spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb
|
204
|
+
- spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb
|
205
|
+
- spec_legacy/integration/numeric_validator/integer_only_true_spec.rb
|
206
|
+
- spec_legacy/integration/numeric_validator/integer_type_spec.rb
|
207
|
+
- spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb
|
208
|
+
- spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb
|
209
|
+
- spec_legacy/integration/numeric_validator/spec_helper.rb
|
210
|
+
- spec_legacy/integration/primitive_validator/primitive_validator_spec.rb
|
211
|
+
- spec_legacy/integration/primitive_validator/spec_helper.rb
|
212
|
+
- spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb
|
213
|
+
- spec_legacy/integration/required_field_validator/association_spec.rb
|
214
|
+
- spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb
|
215
|
+
- spec_legacy/integration/required_field_validator/date_type_value_spec.rb
|
216
|
+
- spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb
|
217
|
+
- spec_legacy/integration/required_field_validator/float_type_value_spec.rb
|
218
|
+
- spec_legacy/integration/required_field_validator/integer_type_value_spec.rb
|
219
|
+
- spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb
|
220
|
+
- spec_legacy/integration/required_field_validator/shared_examples.rb
|
221
|
+
- spec_legacy/integration/required_field_validator/spec_helper.rb
|
222
|
+
- spec_legacy/integration/required_field_validator/string_type_value_spec.rb
|
223
|
+
- spec_legacy/integration/required_field_validator/text_type_value_spec.rb
|
224
|
+
- spec_legacy/integration/shared/default_validation_context.rb
|
225
|
+
- spec_legacy/integration/shared/valid_and_invalid_model.rb
|
226
|
+
- spec_legacy/integration/uniqueness_validator/spec_helper.rb
|
227
|
+
- spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb
|
228
|
+
- spec_legacy/integration/within_validator/spec_helper.rb
|
229
|
+
- spec_legacy/integration/within_validator/within_validator_spec.rb
|
230
|
+
- spec_legacy/public/resource_spec.rb
|
231
|
+
- spec_legacy/spec.opts
|
232
|
+
- spec_legacy/spec_helper.rb
|
233
|
+
- spec_legacy/unit/contextual_validators/emptiness_spec.rb
|
234
|
+
- spec_legacy/unit/contextual_validators/execution_spec.rb
|
235
|
+
- spec_legacy/unit/contextual_validators/spec_helper.rb
|
236
|
+
- spec_legacy/unit/generic_validator/equality_operator_spec.rb
|
237
|
+
- spec_legacy/unit/generic_validator/optional_spec.rb
|
238
|
+
- spec_legacy/unit/validators/within_validator_spec.rb
|
239
|
+
- spec_legacy/unit/violation_set/adding_spec.rb
|
240
|
+
- spec_legacy/unit/violation_set/emptiness_spec.rb
|
241
|
+
- spec_legacy/unit/violation_set/enumerable_spec.rb
|
242
|
+
- spec_legacy/unit/violation_set/reading_spec.rb
|
243
|
+
- spec_legacy/unit/violation_set/respond_to_spec.rb
|
244
|
+
- tasks/spec.rake
|
245
|
+
- tasks/yard.rake
|
246
|
+
- tasks/yardstick.rake
|
247
|
+
homepage: https://github.com/emmanuel/aequitas
|
248
|
+
licenses: []
|
249
|
+
post_install_message:
|
250
|
+
rdoc_options: []
|
251
|
+
require_paths:
|
252
|
+
- lib
|
253
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
254
|
+
none: false
|
255
|
+
requirements:
|
256
|
+
- - ! '>='
|
257
|
+
- !ruby/object:Gem::Version
|
258
|
+
version: '0'
|
259
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
260
|
+
none: false
|
261
|
+
requirements:
|
262
|
+
- - ! '>='
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0'
|
265
|
+
requirements: []
|
266
|
+
rubyforge_project:
|
267
|
+
rubygems_version: 1.8.10
|
268
|
+
signing_key:
|
269
|
+
specification_version: 3
|
270
|
+
summary: Library for performing validations on Ruby objects.
|
271
|
+
test_files:
|
272
|
+
- spec/integration/aequitas/macros/validates_absence_of_spec.rb
|
273
|
+
- spec/integration/aequitas/macros/validates_acceptance_of_spec.rb
|
274
|
+
- spec/integration/aequitas/macros/validates_confirmation_of_spec.rb
|
275
|
+
- spec/integration/aequitas/macros/validates_format_of_spec.rb
|
276
|
+
- spec/integration/aequitas/macros/validates_length_of.rb
|
277
|
+
- spec/integration/aequitas/macros/validates_numericalness_of_spec.rb
|
278
|
+
- spec/integration/aequitas/macros/validates_presence_of_spec.rb
|
279
|
+
- spec/integration/aequitas/macros/validates_with_block.rb
|
280
|
+
- spec/integration/aequitas/macros/validates_with_method.rb
|
281
|
+
- spec/integration/aequitas/macros/validates_within.rb
|
282
|
+
- spec/integration/shared/macros/integration_spec.rb
|
283
|
+
- spec/integration/virtus/boolean/presence_spec.rb
|
284
|
+
- spec/integration/virtus/string/format/email_address_spec.rb
|
285
|
+
- spec/integration/virtus/string/format/regexp_spec.rb
|
286
|
+
- spec/integration/virtus/string/format/url_spec.rb
|
287
|
+
- spec/integration/virtus/string/length/equal_spec.rb
|
288
|
+
- spec/integration/virtus/string/length/range_spec.rb
|
289
|
+
- spec/integration/virtus/string/presence_spec.rb
|
290
|
+
- spec/rcov.opts
|
291
|
+
- spec/spec_helper.rb
|
292
|
+
- spec/suite.rb
|
293
|
+
- spec/unit/aequitas/rule/absence/blank_spec.rb
|
294
|
+
- spec/unit/aequitas/rule/acceptance_spec.rb
|
295
|
+
- spec/unit/aequitas/rule/confirmation_spec.rb
|
296
|
+
- spec/unit/aequitas/rule/guard_spec.rb
|
297
|
+
- spec/unit/aequitas/rule/skip_condition_spec.rb
|
298
|
+
- spec/unit/aequitas/rule_spec.rb
|
299
|
+
- spec/unit/aequitas/support/blank_spec.rb
|
300
|
+
- spec/unit/aequitas/support/equalizable/equalizer_spec.rb
|
301
|
+
- spec/unit/aequitas/support/equalizable_spec.rb
|
302
|
+
- spec/unit/aequitas/violation_set_spec.rb
|