aequitas 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/aequitas/contextual_rule_set.rb +23 -29
- data/lib/aequitas/macros.rb +6 -0
- data/lib/aequitas/message_transformer.rb +23 -8
- data/lib/aequitas/rule.rb +2 -23
- data/lib/aequitas/rule/block.rb +5 -0
- data/lib/aequitas/rule/format.rb +24 -28
- data/lib/aequitas/rule/{formats/email.rb → format/email_address.rb} +7 -3
- data/lib/aequitas/rule/format/proc.rb +4 -10
- data/lib/aequitas/rule/format/regexp.rb +4 -6
- data/lib/aequitas/rule/{formats → format}/url.rb +7 -3
- data/lib/aequitas/rule/guard.rb +2 -2
- data/lib/aequitas/rule/length.rb +29 -30
- data/lib/aequitas/rule/length/equal.rb +4 -4
- data/lib/aequitas/rule/length/maximum.rb +4 -6
- data/lib/aequitas/rule/length/minimum.rb +4 -6
- data/lib/aequitas/rule/length/range.rb +4 -6
- data/lib/aequitas/rule/method.rb +6 -1
- data/lib/aequitas/rule/numericalness.rb +19 -40
- data/lib/aequitas/rule/numericalness/integer.rb +3 -19
- data/lib/aequitas/rule/numericalness/non_integer.rb +2 -18
- data/lib/aequitas/rule/primitive_type.rb +17 -6
- data/lib/aequitas/rule/primitive_type/virtus.rb +25 -0
- data/lib/aequitas/rule/skip_condition.rb +2 -2
- data/lib/aequitas/rule/value.rb +64 -0
- data/lib/aequitas/rule/{numericalness → value}/equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/greater_than.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/greater_than_or_equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/less_than.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/less_than_or_equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/not_equal.rb +5 -7
- data/lib/aequitas/rule/value/range.rb +25 -0
- data/lib/aequitas/rule/within.rb +25 -13
- data/lib/aequitas/rule_set.rb +2 -2
- data/lib/aequitas/support/{equalizable.rb → value_object.rb} +2 -3
- data/lib/aequitas/version.rb +1 -1
- data/lib/aequitas/violation.rb +4 -4
- data/lib/aequitas/violation_set.rb +2 -3
- data/lib/aequitas/virtus_integration.rb +31 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor.rb +30 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/array.rb +29 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/boolean.rb +17 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/numeric.rb +22 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/object.rb +38 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/string.rb +35 -0
- data/spec/integration/aequitas/macros/validates_numericalness_of_spec.rb +77 -8
- data/spec/integration/aequitas/macros/validates_value_of_spec.rb +27 -0
- data/spec/integration/aequitas/macros/validates_within.rb +10 -74
- data/spec/integration/shared/macros/integration_spec.rb +10 -0
- data/spec/integration/virtus/array/length/equal_spec.rb +49 -0
- data/spec/integration/virtus/array/length/range_spec.rb +59 -0
- data/spec/integration/virtus/boolean/presence_spec.rb +4 -4
- data/spec/integration/virtus/integer/value/equal_to_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/greater_than_or_equal.rb +45 -0
- data/spec/integration/virtus/integer/value/greater_than_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/less_than_or_equal.rb +45 -0
- data/spec/integration/virtus/integer/value/less_than_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/not_equal_to_spec.rb +45 -0
- data/spec/integration/virtus/string/format/email_address_spec.rb +3 -3
- data/spec/integration/virtus/string/format/regexp_spec.rb +2 -2
- data/spec/integration/virtus/string/format/url_spec.rb +2 -2
- data/spec/integration/virtus/string/length/equal_spec.rb +3 -3
- data/spec/integration/virtus/string/length/range_spec.rb +2 -2
- data/spec/integration/virtus/string/presence_spec.rb +2 -2
- data/spec/unit/aequitas/support/{equalizable → value_object}/equalizer_spec.rb +4 -4
- data/spec/unit/aequitas/support/{equalizable_spec.rb → value_object_spec.rb} +11 -11
- data/spec/unit/aequitas/violation_set_spec.rb +1 -1
- metadata +46 -149
- data/.gitignore +0 -4
- data/.rvmrc +0 -1
- data/aequitas.gemspec +0 -20
- data/lib/aequitas/rule/within/range.rb +0 -53
- data/lib/aequitas/rule/within/range/bounded.rb +0 -25
- data/lib/aequitas/rule/within/range/unbounded_begin.rb +0 -25
- data/lib/aequitas/rule/within/range/unbounded_end.rb +0 -25
- data/lib/aequitas/rule/within/set.rb +0 -39
- data/lib/aequitas/virtus.rb +0 -29
- data/lib/aequitas/virtus/inline_attribute_rule_extractor.rb +0 -41
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb +0 -17
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb +0 -25
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb +0 -27
- data/spec_legacy/fixtures/barcode.rb +0 -40
- data/spec_legacy/fixtures/basketball_court.rb +0 -58
- data/spec_legacy/fixtures/basketball_player.rb +0 -34
- data/spec_legacy/fixtures/beta_tester_account.rb +0 -33
- data/spec_legacy/fixtures/bill_of_landing.rb +0 -47
- data/spec_legacy/fixtures/boat_dock.rb +0 -26
- data/spec_legacy/fixtures/city.rb +0 -24
- data/spec_legacy/fixtures/company.rb +0 -93
- data/spec_legacy/fixtures/corporate_world.rb +0 -39
- data/spec_legacy/fixtures/country.rb +0 -24
- data/spec_legacy/fixtures/ethernet_frame.rb +0 -56
- data/spec_legacy/fixtures/event.rb +0 -44
- data/spec_legacy/fixtures/g3_concert.rb +0 -57
- data/spec_legacy/fixtures/jabberwock.rb +0 -27
- data/spec_legacy/fixtures/kayak.rb +0 -28
- data/spec_legacy/fixtures/lernean_hydra.rb +0 -39
- data/spec_legacy/fixtures/llama_spaceship.rb +0 -15
- data/spec_legacy/fixtures/mathematical_function.rb +0 -34
- data/spec_legacy/fixtures/memory_object.rb +0 -30
- data/spec_legacy/fixtures/mittelschnauzer.rb +0 -39
- data/spec_legacy/fixtures/motor_launch.rb +0 -21
- data/spec_legacy/fixtures/multibyte.rb +0 -16
- data/spec_legacy/fixtures/page.rb +0 -32
- data/spec_legacy/fixtures/phone_number.rb +0 -28
- data/spec_legacy/fixtures/pirogue.rb +0 -28
- data/spec_legacy/fixtures/programming_language.rb +0 -83
- data/spec_legacy/fixtures/reservation.rb +0 -38
- data/spec_legacy/fixtures/scm_operation.rb +0 -56
- data/spec_legacy/fixtures/sms_message.rb +0 -22
- data/spec_legacy/fixtures/udp_packet.rb +0 -49
- data/spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb +0 -90
- data/spec_legacy/integration/absent_field_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb +0 -196
- data/spec_legacy/integration/acceptance_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +0 -57
- data/spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb +0 -49
- data/spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +0 -100
- data/spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb +0 -45
- data/spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb +0 -35
- data/spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +0 -70
- data/spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb +0 -142
- data/spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb +0 -45
- data/spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb +0 -22
- data/spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +0 -48
- data/spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb +0 -35
- data/spec_legacy/integration/automatic_validation/spec_helper.rb +0 -57
- data/spec_legacy/integration/block_validator/block_validator_spec.rb +0 -32
- data/spec_legacy/integration/block_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/conditional_validation/if_condition_spec.rb +0 -63
- data/spec_legacy/integration/conditional_validation/spec_helper.rb +0 -5
- data/spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb +0 -76
- data/spec_legacy/integration/confirmation_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/datamapper_models/association_validation_spec.rb +0 -29
- data/spec_legacy/integration/datamapper_models/inheritance_spec.rb +0 -82
- data/spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb +0 -13
- data/spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb +0 -24
- data/spec_legacy/integration/duplicated_validations/spec_helper.rb +0 -5
- data/spec_legacy/integration/format_validator/email_format_validator_spec.rb +0 -139
- data/spec_legacy/integration/format_validator/format_validator_spec.rb +0 -64
- data/spec_legacy/integration/format_validator/regexp_validator_spec.rb +0 -33
- data/spec_legacy/integration/format_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/format_validator/url_format_validator_spec.rb +0 -93
- data/spec_legacy/integration/length_validator/default_value_spec.rb +0 -14
- data/spec_legacy/integration/length_validator/equality_spec.rb +0 -87
- data/spec_legacy/integration/length_validator/error_message_spec.rb +0 -22
- data/spec_legacy/integration/length_validator/maximum_spec.rb +0 -49
- data/spec_legacy/integration/length_validator/minimum_spec.rb +0 -54
- data/spec_legacy/integration/length_validator/range_spec.rb +0 -87
- data/spec_legacy/integration/length_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/method_validator/method_validator_spec.rb +0 -242
- data/spec_legacy/integration/method_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb +0 -65
- data/spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb +0 -41
- data/spec_legacy/integration/numeric_validator/float_type_spec.rb +0 -90
- data/spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/integer_only_true_spec.rb +0 -91
- data/spec_legacy/integration/numeric_validator/integer_type_spec.rb +0 -86
- data/spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/primitive_validator/primitive_validator_spec.rb +0 -92
- data/spec_legacy/integration/primitive_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +0 -118
- data/spec_legacy/integration/required_field_validator/association_spec.rb +0 -69
- data/spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb +0 -164
- data/spec_legacy/integration/required_field_validator/date_type_value_spec.rb +0 -127
- data/spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb +0 -127
- data/spec_legacy/integration/required_field_validator/float_type_value_spec.rb +0 -131
- data/spec_legacy/integration/required_field_validator/integer_type_value_spec.rb +0 -99
- data/spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb +0 -35
- data/spec_legacy/integration/required_field_validator/shared_examples.rb +0 -26
- data/spec_legacy/integration/required_field_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/required_field_validator/string_type_value_spec.rb +0 -167
- data/spec_legacy/integration/required_field_validator/text_type_value_spec.rb +0 -49
- data/spec_legacy/integration/shared/default_validation_context.rb +0 -13
- data/spec_legacy/integration/shared/valid_and_invalid_model.rb +0 -35
- data/spec_legacy/integration/uniqueness_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb +0 -116
- data/spec_legacy/integration/within_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/within_validator/within_validator_spec.rb +0 -168
- data/spec_legacy/public/resource_spec.rb +0 -105
- data/spec_legacy/spec.opts +0 -4
- data/spec_legacy/spec_helper.rb +0 -29
- data/spec_legacy/unit/contextual_validators/emptiness_spec.rb +0 -50
- data/spec_legacy/unit/contextual_validators/execution_spec.rb +0 -48
- data/spec_legacy/unit/contextual_validators/spec_helper.rb +0 -37
- data/spec_legacy/unit/generic_validator/equality_operator_spec.rb +0 -26
- data/spec_legacy/unit/generic_validator/optional_spec.rb +0 -54
- data/spec_legacy/unit/validators/within_validator_spec.rb +0 -23
- data/spec_legacy/unit/violation_set/adding_spec.rb +0 -54
- data/spec_legacy/unit/violation_set/emptiness_spec.rb +0 -38
- data/spec_legacy/unit/violation_set/enumerable_spec.rb +0 -32
- data/spec_legacy/unit/violation_set/reading_spec.rb +0 -35
- data/spec_legacy/unit/violation_set/respond_to_spec.rb +0 -15
- data/tasks/spec.rake +0 -38
- data/tasks/yard.rake +0 -9
- data/tasks/yardstick.rake +0 -19
@@ -1,26 +0,0 @@
|
|
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
|
@@ -1,54 +0,0 @@
|
|
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
|
@@ -1,23 +0,0 @@
|
|
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
|
@@ -1,54 +0,0 @@
|
|
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
|
@@ -1,38 +0,0 @@
|
|
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
|
@@ -1,32 +0,0 @@
|
|
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
|
@@ -1,35 +0,0 @@
|
|
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
|
@@ -1,15 +0,0 @@
|
|
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
DELETED
@@ -1,38 +0,0 @@
|
|
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
DELETED
data/tasks/yardstick.rake
DELETED
@@ -1,19 +0,0 @@
|
|
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
|