axiom 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.travis.yml +11 -20
- data/Gemfile +5 -2
- data/Gemfile.devtools +26 -28
- data/Guardfile +18 -9
- data/README.md +20 -39
- data/axiom.gemspec +17 -18
- data/benchmarks/memory.rb +14 -14
- data/benchmarks/speed.rb +14 -14
- data/config/devtools.yml +2 -0
- data/config/flay.yml +1 -1
- data/config/flog.yml +1 -1
- data/config/reek.yml +3 -3
- data/config/rubocop.yml +62 -0
- data/lib/axiom.rb +17 -20
- data/lib/axiom/aggregate.rb +2 -5
- data/lib/axiom/aggregate/count.rb +4 -4
- data/lib/axiom/aggregate/maximum.rb +3 -3
- data/lib/axiom/aggregate/mean.rb +9 -9
- data/lib/axiom/aggregate/minimum.rb +3 -3
- data/lib/axiom/aggregate/standard_deviation.rb +5 -4
- data/lib/axiom/aggregate/sum.rb +4 -4
- data/lib/axiom/aggregate/variance.rb +15 -12
- data/lib/axiom/algebra/extension.rb +2 -2
- data/lib/axiom/algebra/projection.rb +3 -3
- data/lib/axiom/algebra/rename/aliases.rb +6 -6
- data/lib/axiom/algebra/restriction.rb +1 -1
- data/lib/axiom/algebra/summarization.rb +5 -7
- data/lib/axiom/algebra/summarization/summaries.rb +2 -2
- data/lib/axiom/algebra/union.rb +1 -1
- data/lib/axiom/attribute.rb +24 -33
- data/lib/axiom/attribute/boolean.rb +10 -20
- data/lib/axiom/attribute/class.rb +5 -5
- data/lib/axiom/attribute/date.rb +5 -19
- data/lib/axiom/attribute/date_time.rb +5 -19
- data/lib/axiom/attribute/decimal.rb +5 -5
- data/lib/axiom/attribute/float.rb +5 -7
- data/lib/axiom/attribute/integer.rb +5 -5
- data/lib/axiom/attribute/numeric.rb +15 -39
- data/lib/axiom/attribute/object.rb +5 -5
- data/lib/axiom/attribute/string.rb +16 -63
- data/lib/axiom/attribute/time.rb +5 -19
- data/lib/axiom/function.rb +14 -2
- data/lib/axiom/function/binary.rb +17 -0
- data/lib/axiom/function/connective.rb +6 -3
- data/lib/axiom/function/connective/conjunction.rb +2 -2
- data/lib/axiom/function/connective/disjunction.rb +2 -2
- data/lib/axiom/function/numeric.rb +13 -0
- data/lib/axiom/function/numeric/absolute.rb +1 -1
- data/lib/axiom/function/numeric/division.rb +18 -2
- data/lib/axiom/function/numeric/exponentiation.rb +1 -1
- data/lib/axiom/function/numeric/modulo.rb +1 -1
- data/lib/axiom/function/numeric/square_root.rb +19 -3
- data/lib/axiom/function/predicate.rb +6 -3
- data/lib/axiom/function/predicate/exclusion.rb +2 -2
- data/lib/axiom/function/predicate/inclusion.rb +2 -2
- data/lib/axiom/function/proposition.rb +12 -9
- data/lib/axiom/function/string/length.rb +6 -3
- data/lib/axiom/function/unary.rb +12 -0
- data/lib/axiom/relation.rb +31 -50
- data/lib/axiom/relation/base.rb +3 -3
- data/lib/axiom/relation/empty.rb +3 -32
- data/lib/axiom/relation/header.rb +31 -15
- data/lib/axiom/relation/keys.rb +4 -4
- data/lib/axiom/relation/materialized.rb +2 -1
- data/lib/axiom/relation/operation/limit.rb +51 -0
- data/lib/axiom/relation/operation/order.rb +21 -28
- data/lib/axiom/relation/operation/order/direction_set.rb +1 -1
- data/lib/axiom/relation/proxy.rb +2 -2
- data/lib/axiom/relation/variable.rb +117 -0
- data/lib/axiom/support/equalizer.rb +9 -2
- data/lib/axiom/support/evaluator.rb +4 -1
- data/lib/axiom/tuple.rb +2 -2
- data/lib/axiom/version.rb +1 -1
- data/spec/integration/axiom/algebra/join_spec.rb +2 -2
- data/spec/integration/axiom/algebra/product_spec.rb +2 -2
- data/spec/integration/axiom/algebra/projection_spec.rb +6 -6
- data/spec/integration/axiom/algebra/summarization_spec.rb +9 -9
- data/spec/integration/axiom/relation/efficient_enumerable_spec.rb +18 -18
- data/spec/integration/axiom/relation/mutable_enumerator_spec.rb +51 -0
- data/spec/integration/axiom/relation/variable/thread_safe_spec.rb +45 -0
- data/spec/integration/axiom/relation/writable_relations_spec.rb +14 -14
- data/spec/shared/invertible_method_behaviour.rb +1 -1
- data/spec/spec_helper.rb +23 -15
- data/spec/support/config_alias.rb +2 -0
- data/spec/unit/axiom/aggregate/call_spec.rb +5 -5
- data/spec/unit/axiom/aggregate/class_methods/finalize_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/count/class_methods/call_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/count/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/aggregate/count/methods/count_spec.rb +1 -1
- data/spec/unit/axiom/aggregate/default_spec.rb +2 -2
- data/spec/unit/axiom/aggregate/finalize_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/maximum/class_methods/call_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/maximum/methods/maximum_spec.rb +2 -2
- data/spec/unit/axiom/aggregate/maximum/type_spec.rb +4 -4
- data/spec/unit/axiom/aggregate/mean/class_methods/call_spec.rb +6 -6
- data/spec/unit/axiom/aggregate/mean/class_methods/default_spec.rb +1 -1
- data/spec/unit/axiom/aggregate/mean/class_methods/finalize_spec.rb +4 -4
- data/spec/unit/axiom/aggregate/mean/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/aggregate/mean/methods/mean_spec.rb +2 -2
- data/spec/unit/axiom/aggregate/minimum/class_methods/call_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/minimum/methods/minimum_spec.rb +2 -2
- data/spec/unit/axiom/aggregate/minimum/type_spec.rb +4 -4
- data/spec/unit/axiom/aggregate/standard_deviation/class_methods/finalize_spec.rb +4 -4
- data/spec/unit/axiom/aggregate/standard_deviation/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/aggregate/standard_deviation/methods/standard_deviation_spec.rb +2 -2
- data/spec/unit/axiom/aggregate/sum/class_methods/call_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/sum/default_spec.rb +3 -3
- data/spec/unit/axiom/aggregate/sum/methods/sum_spec.rb +1 -1
- data/spec/unit/axiom/aggregate/sum/type_spec.rb +4 -4
- data/spec/unit/axiom/aggregate/variance/class_methods/call_spec.rb +9 -9
- data/spec/unit/axiom/aggregate/variance/class_methods/default_spec.rb +1 -1
- data/spec/unit/axiom/aggregate/variance/class_methods/finalize_spec.rb +11 -3
- data/spec/unit/axiom/aggregate/variance/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/aggregate/variance/methods/variance_spec.rb +2 -2
- data/spec/unit/axiom/algebra/difference/delete_spec.rb +6 -6
- data/spec/unit/axiom/algebra/difference/each_spec.rb +6 -6
- data/spec/unit/axiom/algebra/difference/insert_spec.rb +5 -5
- data/spec/unit/axiom/algebra/difference/methods/difference_spec.rb +5 -5
- data/spec/unit/axiom/algebra/extension/class_methods/new_spec.rb +4 -4
- data/spec/unit/axiom/algebra/extension/delete_spec.rb +11 -11
- data/spec/unit/axiom/algebra/extension/each_spec.rb +7 -7
- data/spec/unit/axiom/algebra/extension/eql_spec.rb +5 -5
- data/spec/unit/axiom/algebra/extension/extensions_spec.rb +3 -3
- data/spec/unit/axiom/algebra/extension/hash_spec.rb +3 -3
- data/spec/unit/axiom/algebra/extension/header_spec.rb +4 -4
- data/spec/unit/axiom/algebra/extension/insert_spec.rb +11 -11
- data/spec/unit/axiom/algebra/extension/methods/extend_spec.rb +6 -6
- data/spec/unit/axiom/algebra/extension/operand_spec.rb +4 -4
- data/spec/unit/axiom/algebra/intersection/delete_spec.rb +6 -6
- data/spec/unit/axiom/algebra/intersection/each_spec.rb +6 -6
- data/spec/unit/axiom/algebra/intersection/insert_spec.rb +5 -5
- data/spec/unit/axiom/algebra/intersection/methods/intersect_spec.rb +5 -5
- data/spec/unit/axiom/algebra/join/class_methods/new_spec.rb +5 -5
- data/spec/unit/axiom/algebra/join/delete_spec.rb +8 -8
- data/spec/unit/axiom/algebra/join/each_spec.rb +15 -15
- data/spec/unit/axiom/algebra/join/insert_spec.rb +8 -8
- data/spec/unit/axiom/algebra/join/join_header_spec.rb +4 -4
- data/spec/unit/axiom/algebra/join/methods/join_spec.rb +6 -6
- data/spec/unit/axiom/algebra/product/class_methods/new_spec.rb +6 -6
- data/spec/unit/axiom/algebra/product/delete_spec.rb +4 -4
- data/spec/unit/axiom/algebra/product/each_spec.rb +8 -8
- data/spec/unit/axiom/algebra/product/insert_spec.rb +4 -4
- data/spec/unit/axiom/algebra/product/methods/product_spec.rb +4 -4
- data/spec/unit/axiom/algebra/projection/delete_spec.rb +11 -11
- data/spec/unit/axiom/algebra/projection/each_spec.rb +7 -7
- data/spec/unit/axiom/algebra/projection/eql_spec.rb +5 -5
- data/spec/unit/axiom/algebra/projection/hash_spec.rb +4 -4
- data/spec/unit/axiom/algebra/projection/header_spec.rb +3 -3
- data/spec/unit/axiom/algebra/projection/insert_spec.rb +14 -14
- data/spec/unit/axiom/algebra/projection/methods/project_spec.rb +5 -5
- data/spec/unit/axiom/algebra/projection/methods/remove_spec.rb +5 -5
- data/spec/unit/axiom/algebra/rename/aliases/class_methods/coerce_spec.rb +2 -2
- data/spec/unit/axiom/algebra/rename/aliases/each_spec.rb +4 -4
- data/spec/unit/axiom/algebra/rename/aliases/element_reader_spec.rb +2 -2
- data/spec/unit/axiom/algebra/rename/aliases/to_hash_spec.rb +2 -2
- data/spec/unit/axiom/algebra/rename/aliases/union_spec.rb +1 -1
- data/spec/unit/axiom/algebra/rename/aliases_spec.rb +2 -2
- data/spec/unit/axiom/algebra/rename/delete_spec.rb +6 -6
- data/spec/unit/axiom/algebra/rename/directions_spec.rb +4 -4
- data/spec/unit/axiom/algebra/rename/each_spec.rb +6 -6
- data/spec/unit/axiom/algebra/rename/eql_spec.rb +5 -5
- data/spec/unit/axiom/algebra/rename/hash_spec.rb +3 -3
- data/spec/unit/axiom/algebra/rename/header_spec.rb +3 -3
- data/spec/unit/axiom/algebra/rename/insert_spec.rb +6 -6
- data/spec/unit/axiom/algebra/rename/methods/rename_spec.rb +4 -4
- data/spec/unit/axiom/algebra/restriction/delete_spec.rb +9 -9
- data/spec/unit/axiom/algebra/restriction/each_spec.rb +12 -12
- data/spec/unit/axiom/algebra/restriction/eql_spec.rb +4 -4
- data/spec/unit/axiom/algebra/restriction/hash_spec.rb +3 -3
- data/spec/unit/axiom/algebra/restriction/insert_spec.rb +9 -9
- data/spec/unit/axiom/algebra/restriction/methods/restrict_spec.rb +12 -15
- data/spec/unit/axiom/algebra/restriction/predicate_spec.rb +4 -4
- data/spec/unit/axiom/algebra/summarization/class_methods/new_spec.rb +6 -6
- data/spec/unit/axiom/algebra/summarization/delete_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/each_spec.rb +5 -5
- data/spec/unit/axiom/algebra/summarization/eql_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/hash_spec.rb +2 -2
- data/spec/unit/axiom/algebra/summarization/header_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/insert_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/methods/summarize_spec.rb +15 -15
- data/spec/unit/axiom/algebra/summarization/summaries/summarize_by_spec.rb +6 -6
- data/spec/unit/axiom/algebra/summarization/summaries/to_hash_spec.rb +2 -2
- data/spec/unit/axiom/algebra/summarization/summarize_per_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/summarizers_spec.rb +3 -3
- data/spec/unit/axiom/algebra/summarization/summary/call_spec.rb +4 -4
- data/spec/unit/axiom/algebra/summarization/summary/summarize_by_spec.rb +9 -6
- data/spec/unit/axiom/algebra/union/delete_spec.rb +6 -6
- data/spec/unit/axiom/algebra/union/each_spec.rb +9 -9
- data/spec/unit/axiom/algebra/union/insert_spec.rb +5 -5
- data/spec/unit/axiom/algebra/union/methods/union_spec.rb +5 -5
- data/spec/unit/axiom/aliasable/inheritable_alias_spec.rb +6 -6
- data/spec/unit/axiom/attribute/{date/class_methods/primitive_spec.rb → boolean/class_methods/type_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/boolean/{valid_value_predicate_spec.rb → include_predicate_spec.rb} +2 -2
- data/spec/unit/axiom/attribute/call_spec.rb +8 -4
- data/spec/unit/axiom/attribute/{time/class_methods/primitive_spec.rb → class/class_methods/type_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/class_methods/coerce_spec.rb +6 -6
- data/spec/unit/axiom/attribute/class_methods/infer_type_spec.rb +15 -15
- data/spec/unit/axiom/attribute/class_methods/name_from_spec.rb +4 -4
- data/spec/unit/axiom/attribute/class_methods/new_spec.rb +1 -1
- data/spec/unit/axiom/attribute/{float/class_methods/primitive_spec.rb → date/class_methods/type_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/{class/class_methods/primitive_spec.rb → date_time/class_methods/type_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/decimal/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/eql_spec.rb +5 -1
- data/spec/unit/axiom/attribute/equality_operator_spec.rb +5 -1
- data/spec/unit/axiom/attribute/float/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/hash_spec.rb +6 -2
- data/spec/unit/axiom/attribute/{valid_value_predicate_spec.rb → include_predicate_spec.rb} +4 -8
- data/spec/unit/axiom/attribute/integer/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/name_spec.rb +5 -1
- data/spec/unit/axiom/attribute/numeric/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/numeric/eql_spec.rb +2 -2
- data/spec/unit/axiom/attribute/numeric/equality_operator_spec.rb +2 -2
- data/spec/unit/axiom/attribute/numeric/hash_spec.rb +6 -6
- data/spec/unit/axiom/attribute/numeric/{valid_value_predicate_spec.rb → include_predicate_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/object/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/optional_predicate_spec.rb +31 -0
- data/spec/unit/axiom/attribute/rename_spec.rb +9 -5
- data/spec/unit/axiom/attribute/required_predicate_spec.rb +8 -4
- data/spec/unit/axiom/attribute/string/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/string/eql_spec.rb +5 -5
- data/spec/unit/axiom/attribute/string/equality_operator_spec.rb +5 -5
- data/spec/unit/axiom/attribute/string/hash_spec.rb +9 -9
- data/spec/unit/axiom/attribute/string/{valid_value_predicate_spec.rb → include_predicate_spec.rb} +3 -3
- data/spec/unit/axiom/attribute/time/class_methods/type_spec.rb +13 -0
- data/spec/unit/axiom/attribute/type_spec.rb +4 -4
- data/spec/unit/axiom/equalizer/class_method/new_spec.rb +11 -11
- data/spec/unit/axiom/equalizer/methods/eql_spec.rb +1 -1
- data/spec/unit/axiom/evaluator/context/add_spec.rb +5 -5
- data/spec/unit/axiom/evaluator/context/element_reader_spec.rb +5 -5
- data/spec/unit/axiom/evaluator/context/functions_spec.rb +1 -1
- data/spec/unit/axiom/evaluator/context/method_missing_spec.rb +5 -5
- data/spec/unit/axiom/evaluator/context/respond_to_predicate_spec.rb +3 -3
- data/spec/unit/axiom/evaluator/context/send_spec.rb +9 -9
- data/spec/unit/axiom/evaluator/context/yield_spec.rb +3 -3
- data/spec/unit/axiom/function/binary/call_spec.rb +4 -4
- data/spec/unit/axiom/function/binary/equality_operator_spec.rb +6 -6
- data/spec/unit/axiom/function/binary/invertible/class_methods/included_spec.rb +5 -5
- data/spec/unit/axiom/function/binary/invertible/inverse_spec.rb +5 -5
- data/spec/unit/axiom/function/binary/rename_spec.rb +9 -9
- data/spec/unit/axiom/function/binary/type_spec.rb +53 -0
- data/spec/unit/axiom/function/class_methods/extract_value_spec.rb +5 -5
- data/spec/unit/axiom/function/class_methods/rename_attributes_spec.rb +3 -3
- data/spec/unit/axiom/function/class_methods/type_spec.rb +12 -0
- data/spec/unit/axiom/function/comparable/class_methods/included_spec.rb +5 -5
- data/spec/unit/axiom/function/connective/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/connective/conjunction/methods/and_spec.rb +5 -5
- data/spec/unit/axiom/function/connective/disjunction/methods/or_spec.rb +5 -5
- data/spec/unit/axiom/function/connective/negation/class_methods/operation_spec.rb +1 -1
- data/spec/unit/axiom/function/connective/negation/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/connective/negation/methods/not_spec.rb +6 -6
- data/spec/unit/axiom/function/numeric/absolute/class_methods/operation_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/absolute/methods/absolute_spec.rb +2 -2
- data/spec/unit/axiom/function/numeric/addition/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/addition/methods/add_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/numeric/division/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/division/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/numeric/division/methods/divide_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/division/type_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/exponentiation/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/exponentiation/methods/exponent_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/modulo/methods/modulo_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/multiplication/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/multiplication/methods/multiply_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/square_root/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/numeric/square_root/methods/square_root_spec.rb +2 -2
- data/spec/unit/axiom/function/numeric/square_root/type_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/subtraction/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/subtraction/methods/subtract_spec.rb +4 -4
- data/spec/unit/axiom/function/numeric/unary_minus/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/unary_minus/class_methods/operation_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/unary_minus/methods/unary_minus_spec.rb +2 -2
- data/spec/unit/axiom/function/numeric/unary_plus/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/unary_plus/class_methods/operation_spec.rb +1 -1
- data/spec/unit/axiom/function/numeric/unary_plus/methods/unary_plus_spec.rb +2 -2
- data/spec/unit/axiom/function/predicate/call_spec.rb +5 -5
- data/spec/unit/axiom/function/predicate/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/predicate/enumerable/call_spec.rb +11 -11
- data/spec/unit/axiom/function/predicate/enumerable/class_methods/compare_method_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/equality/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/equality/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/equality/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/exclusion/class_methods/call_spec.rb +4 -4
- data/spec/unit/axiom/function/predicate/exclusion/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/exclusion/inverse_spec.rb +3 -3
- data/spec/unit/axiom/function/predicate/exclusion/methods/exclude_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than_or_equal_to/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than_or_equal_to/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/greater_than_or_equal_to/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/inclusion/class_methods/call_spec.rb +4 -4
- data/spec/unit/axiom/function/predicate/inclusion/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/inclusion/inverse_spec.rb +3 -3
- data/spec/unit/axiom/function/predicate/inclusion/methods/include_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/inequality/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/inequality/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/inequality/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than_or_equal_to/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than_or_equal_to/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/less_than_or_equal_to/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/match/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/match/inverse_spec.rb +2 -2
- data/spec/unit/axiom/function/predicate/no_match/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/predicate/no_match/inverse_spec.rb +2 -2
- data/spec/unit/axiom/function/proposition/call_spec.rb +2 -2
- data/spec/unit/axiom/function/proposition/class_methods/new_spec.rb +4 -4
- data/spec/unit/axiom/function/proposition/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/proposition/contradiction/and_spec.rb +2 -2
- data/spec/unit/axiom/function/proposition/contradiction/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/proposition/contradiction/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/proposition/contradiction/or_spec.rb +2 -2
- data/spec/unit/axiom/function/proposition/inverse_spec.rb +6 -6
- data/spec/unit/axiom/function/proposition/rename_spec.rb +1 -1
- data/spec/unit/axiom/function/proposition/tautology/and_spec.rb +2 -2
- data/spec/unit/axiom/function/proposition/tautology/class_methods/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/proposition/tautology/inverse_spec.rb +1 -1
- data/spec/unit/axiom/function/proposition/tautology/or_spec.rb +2 -2
- data/spec/unit/axiom/function/rename_spec.rb +1 -1
- data/spec/unit/axiom/function/string/length/class_methods/type_spec.rb +11 -0
- data/spec/unit/axiom/function/string/length/methods/length_spec.rb +1 -1
- data/spec/unit/axiom/function/type_spec.rb +8 -1
- data/spec/unit/axiom/function/unary/call_spec.rb +7 -7
- data/spec/unit/axiom/function/unary/callable/call_spec.rb +4 -4
- data/spec/unit/axiom/function/unary/callable/included_spec.rb +1 -1
- data/spec/unit/axiom/function/unary/equality_operator_spec.rb +5 -5
- data/spec/unit/axiom/function/unary/hash_spec.rb +5 -5
- data/spec/unit/axiom/function/unary/invertible/class_methods/included_spec.rb +5 -5
- data/spec/unit/axiom/function/unary/invertible/inverse_spec.rb +2 -2
- data/spec/unit/axiom/function/unary/rename_spec.rb +7 -7
- data/spec/unit/axiom/function/unary/type_spec.rb +26 -0
- data/spec/unit/axiom/operation/binary/eql_spec.rb +4 -4
- data/spec/unit/axiom/operation/binary/hash_spec.rb +2 -2
- data/spec/unit/axiom/operation/binary/left_spec.rb +2 -2
- data/spec/unit/axiom/operation/binary/right_spec.rb +2 -2
- data/spec/unit/axiom/operation/unary/eql_spec.rb +2 -2
- data/spec/unit/axiom/operation/unary/hash_spec.rb +1 -1
- data/spec/unit/axiom/operation/unary/operand_spec.rb +2 -2
- data/spec/unit/axiom/relation/base/class_methods/new_spec.rb +20 -8
- data/spec/unit/axiom/relation/base/eql_spec.rb +12 -12
- data/spec/unit/axiom/relation/base/hash_spec.rb +4 -4
- data/spec/unit/axiom/relation/base/name_spec.rb +5 -34
- data/spec/unit/axiom/relation/class_methods/coerce_spec.rb +11 -5
- data/spec/unit/axiom/relation/class_methods/new_spec.rb +15 -7
- data/spec/unit/axiom/relation/directions_spec.rb +2 -2
- data/spec/unit/axiom/relation/each_spec.rb +10 -10
- data/spec/unit/axiom/relation/element_reader_spec.rb +4 -4
- data/spec/unit/axiom/relation/empty/class_methods/new_spec.rb +6 -20
- data/spec/unit/axiom/relation/empty/each_spec.rb +7 -22
- data/spec/unit/axiom/relation/empty/empty_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/empty/header_spec.rb +3 -3
- data/spec/unit/axiom/relation/empty/size_spec.rb +1 -1
- data/spec/unit/axiom/relation/empty_predicate_spec.rb +2 -2
- data/spec/unit/axiom/relation/eql_spec.rb +10 -10
- data/spec/unit/axiom/relation/equality_operator_spec.rb +24 -14
- data/spec/unit/axiom/relation/hash_spec.rb +3 -3
- data/spec/unit/axiom/relation/header/call_spec.rb +5 -5
- data/spec/unit/axiom/relation/header/class_methods/coerce_spec.rb +13 -13
- data/spec/unit/axiom/relation/header/class_methods/new_spec.rb +4 -4
- data/spec/unit/axiom/relation/header/context_spec.rb +27 -0
- data/spec/unit/axiom/relation/header/difference_spec.rb +19 -19
- data/spec/unit/axiom/relation/header/each_spec.rb +6 -6
- data/spec/unit/axiom/relation/header/empty_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/header/eql_spec.rb +6 -6
- data/spec/unit/axiom/relation/header/equality_operator_spec.rb +8 -8
- data/spec/unit/axiom/relation/header/extend_spec.rb +9 -9
- data/spec/unit/axiom/relation/header/hash_spec.rb +3 -3
- data/spec/unit/axiom/relation/header/intersect_spec.rb +19 -19
- data/spec/unit/axiom/relation/header/keys_spec.rb +5 -5
- data/spec/unit/axiom/relation/header/project_spec.rb +11 -11
- data/spec/unit/axiom/relation/header/rename_spec.rb +6 -6
- data/spec/unit/axiom/relation/header/to_ary_spec.rb +3 -3
- data/spec/unit/axiom/relation/header/union_spec.rb +20 -20
- data/spec/unit/axiom/relation/header_spec.rb +2 -2
- data/spec/unit/axiom/relation/include_predicate_spec.rb +4 -4
- data/spec/unit/axiom/relation/keys/class_methods/coerce_spec.rb +4 -4
- data/spec/unit/axiom/relation/keys/class_methods/new_spec.rb +5 -5
- data/spec/unit/axiom/relation/keys/difference_spec.rb +7 -7
- data/spec/unit/axiom/relation/keys/each_spec.rb +6 -6
- data/spec/unit/axiom/relation/keys/empty_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/keys/extend_spec.rb +7 -7
- data/spec/unit/axiom/relation/keys/intersect_spec.rb +6 -6
- data/spec/unit/axiom/relation/keys/project_spec.rb +8 -8
- data/spec/unit/axiom/relation/keys/rename_spec.rb +5 -5
- data/spec/unit/axiom/relation/keys/to_ary_spec.rb +3 -3
- data/spec/unit/axiom/relation/keys/union_spec.rb +8 -8
- data/spec/unit/axiom/relation/materialize_spec.rb +3 -3
- data/spec/unit/axiom/relation/materialized/class_methods/new_spec.rb +19 -7
- data/spec/unit/axiom/relation/materialized/directions_spec.rb +4 -4
- data/spec/unit/axiom/relation/materialized/empty_predicate_spec.rb +2 -2
- data/spec/unit/axiom/relation/materialized/materialize_spec.rb +2 -2
- data/spec/unit/axiom/relation/materialized/materialized_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/materialized/size_spec.rb +1 -1
- data/spec/unit/axiom/relation/materialized_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/binary/class_methods/included_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/binary/class_methods/new_spec.rb +3 -3
- data/spec/unit/axiom/relation/operation/binary/header_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/combination/class_methods/combine_tuples_spec.rb +18 -11
- data/spec/unit/axiom/relation/operation/combination/header_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/deletion/initialize_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/deletion/methods/delete_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/insertion/initialize_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/insertion/methods/insert_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/limit/class_methods/new_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/limit/delete_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/limit/directions_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/limit/each_spec.rb +7 -7
- data/spec/unit/axiom/relation/operation/limit/eql_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/limit/hash_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/limit/insert_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/limit/limit_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/limit/methods/first_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/limit/methods/last_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/limit/methods/one_spec.rb +63 -0
- data/spec/unit/axiom/relation/operation/limit/methods/take_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/class_methods/new_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/offset/delete_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/directions_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/each_spec.rb +7 -7
- data/spec/unit/axiom/relation/operation/offset/eql_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/offset/hash_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/insert_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/methods/drop_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/offset/offset_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/order/ascending/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/ascending/reverse_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/class_methods/new_spec.rb +117 -15
- data/spec/unit/axiom/relation/operation/order/delete_spec.rb +11 -11
- data/spec/unit/axiom/relation/operation/order/descending/class_methods/reverse_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/descending/reverse_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/direction/attribute_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/direction/call_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/order/direction/class_methods/coerce_spec.rb +3 -3
- data/spec/unit/axiom/relation/operation/order/direction/eql_predicate_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/direction/name_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/direction/rename_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/order/direction/reverse_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/order/direction_set/attributes_spec.rb +3 -3
- data/spec/unit/axiom/relation/operation/order/direction_set/class_methods/coerce_spec.rb +11 -11
- data/spec/unit/axiom/relation/operation/order/direction_set/class_methods/new_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/order/direction_set/eql_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/order/direction_set/equality_operator_spec.rb +7 -7
- data/spec/unit/axiom/relation/operation/order/direction_set/hash_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/direction_set/project_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/order/direction_set/rename_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/order/direction_set/reverse_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/order/direction_set/sort_tuples_spec.rb +12 -12
- data/spec/unit/axiom/relation/operation/order/direction_set/to_ary_spec.rb +3 -3
- data/spec/unit/axiom/relation/operation/order/directions_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/order/each_spec.rb +7 -7
- data/spec/unit/axiom/relation/operation/order/eql_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/order/hash_spec.rb +1 -1
- data/spec/unit/axiom/relation/operation/order/header_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/order/insert_spec.rb +11 -11
- data/spec/unit/axiom/relation/operation/order/methods/sort_by_spec.rb +127 -20
- data/spec/unit/axiom/relation/operation/order/methods/sort_spec.rb +19 -0
- data/spec/unit/axiom/relation/operation/reverse/class_methods/new_spec.rb +2 -2
- data/spec/unit/axiom/relation/operation/reverse/directions_spec.rb +4 -4
- data/spec/unit/axiom/relation/operation/reverse/each_spec.rb +7 -7
- data/spec/unit/axiom/relation/operation/reverse/methods/reverse_spec.rb +3 -3
- data/spec/unit/axiom/relation/operation/set/class_methods/included_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/set/class_methods/new_spec.rb +6 -6
- data/spec/unit/axiom/relation/operation/set/header_spec.rb +5 -5
- data/spec/unit/axiom/relation/operation/unary/header_spec.rb +5 -5
- data/spec/unit/axiom/relation/proxy/each_spec.rb +8 -8
- data/spec/unit/axiom/relation/proxy/hash_spec.rb +4 -4
- data/spec/unit/axiom/relation/proxy/method_missing_spec.rb +4 -4
- data/spec/unit/axiom/relation/proxy/respond_to_predicate_spec.rb +4 -4
- data/spec/unit/axiom/relation/replace_spec.rb +6 -6
- data/spec/unit/axiom/relation/variable/class_methods/new_spec.rb +35 -0
- data/spec/unit/axiom/relation/variable/delete_spec.rb +18 -0
- data/spec/unit/axiom/relation/variable/insert_spec.rb +18 -0
- data/spec/unit/axiom/relation/variable/materialized/delete_spec.rb +18 -0
- data/spec/unit/axiom/relation/variable/materialized/insert_spec.rb +18 -0
- data/spec/unit/axiom/relation/variable/materialized/replace_spec.rb +18 -0
- data/spec/unit/axiom/relation/variable/replace_spec.rb +18 -0
- data/spec/unit/axiom/tuple/call_spec.rb +3 -4
- data/spec/unit/axiom/tuple/class_methods/coerce_spec.rb +6 -6
- data/spec/unit/axiom/tuple/data_spec.rb +2 -2
- data/spec/unit/axiom/tuple/eql_spec.rb +5 -5
- data/spec/unit/axiom/tuple/equality_operator_spec.rb +6 -6
- data/spec/unit/axiom/tuple/extend_spec.rb +12 -12
- data/spec/unit/axiom/tuple/hash_spec.rb +3 -3
- data/spec/unit/axiom/tuple/header_spec.rb +3 -3
- data/spec/unit/axiom/tuple/join_spec.rb +6 -6
- data/spec/unit/axiom/tuple/predicate_spec.rb +5 -5
- data/spec/unit/axiom/tuple/project_spec.rb +5 -5
- data/spec/unit/axiom/tuple/to_ary_spec.rb +3 -3
- data/spec/unit/axiom/visitable/accept_spec.rb +1 -1
- data/spec/unit/range/to_inclusive_spec.rb +1 -1
- data/spec/unit/time/pred_spec.rb +1 -1
- metadata +92 -614
- checksums.yaml +0 -7
- data/.rvmrc +0 -1
- data/lib/axiom/function/numeric/binary.rb +0 -26
- data/lib/axiom/function/numeric/unary.rb +0 -26
- data/spec/support/ice_nine_config.rb +0 -6
- data/spec/unit/axiom/aggregate/count/type_spec.rb +0 -12
- data/spec/unit/axiom/aggregate/mean/type_spec.rb +0 -12
- data/spec/unit/axiom/aggregate/standard_deviation/type_spec.rb +0 -12
- data/spec/unit/axiom/aggregate/type_spec.rb +0 -13
- data/spec/unit/axiom/aggregate/variance/type_spec.rb +0 -12
- data/spec/unit/axiom/attribute/boolean/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/date/range_spec.rb +0 -11
- data/spec/unit/axiom/attribute/date_time/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/date_time/range_spec.rb +0 -11
- data/spec/unit/axiom/attribute/decimal/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/float/size_spec.rb +0 -21
- data/spec/unit/axiom/attribute/integer/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/numeric/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/numeric/size_spec.rb +0 -33
- data/spec/unit/axiom/attribute/object/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/string/class_methods/primitive_spec.rb +0 -13
- data/spec/unit/axiom/attribute/string/max_length_spec.rb +0 -20
- data/spec/unit/axiom/attribute/string/min_length_spec.rb +0 -20
- data/spec/unit/axiom/attribute/time/range_spec.rb +0 -11
- data/spec/unit/axiom/attribute/valid_primitive_predicate_spec.rb +0 -30
- data/spec/unit/axiom/function/connective/type_spec.rb +0 -12
- data/spec/unit/axiom/function/numeric/binary/type_spec.rb +0 -33
- data/spec/unit/axiom/function/numeric/unary/type_spec.rb +0 -21
- data/spec/unit/axiom/function/predicate/type_spec.rb +0 -14
- data/spec/unit/axiom/function/proposition/type_spec.rb +0 -12
- data/spec/unit/axiom/function/string/length/type_spec.rb +0 -11
- data/spec/unit/axiom/relation/one_spec.rb +0 -36
@@ -5,9 +5,9 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#each' do
|
6
6
|
subject { object.each { |tuple| yields << tuple } }
|
7
7
|
|
8
|
-
let(:attribute) { Attribute::Integer.new(:id)
|
9
|
-
let(:object) { described_class.new([
|
10
|
-
let(:yields) { []
|
8
|
+
let(:attribute) { Attribute::Integer.new(:id) }
|
9
|
+
let(:object) { described_class.new([attribute]) }
|
10
|
+
let(:yields) { [] }
|
11
11
|
|
12
12
|
it_should_behave_like 'an #each method'
|
13
13
|
|
@@ -17,9 +17,9 @@ describe Relation::Header, '#each' do
|
|
17
17
|
end
|
18
18
|
|
19
19
|
it 'yields each attribute' do
|
20
|
-
expect { subject }.to change { yields.dup }
|
21
|
-
from([])
|
22
|
-
to([
|
20
|
+
expect { subject }.to change { yields.dup }
|
21
|
+
.from([])
|
22
|
+
.to([attribute])
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
@@ -8,7 +8,7 @@ describe Relation::Header, '#empty?' do
|
|
8
8
|
let(:object) { described_class.new(attributes) }
|
9
9
|
|
10
10
|
context 'with attributes' do
|
11
|
-
let(:attributes) { [
|
11
|
+
let(:attributes) { [Attribute::Integer.new(:id)] }
|
12
12
|
|
13
13
|
it { should be(false) }
|
14
14
|
end
|
@@ -5,7 +5,7 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#eql?' do
|
6
6
|
subject { object.eql?(other) }
|
7
7
|
|
8
|
-
let(:attributes) { [
|
8
|
+
let(:attributes) { [[:id, Integer]] }
|
9
9
|
let(:object) { described_class.coerce(attributes) }
|
10
10
|
|
11
11
|
context 'with the same object' do
|
@@ -39,7 +39,7 @@ describe Relation::Header, '#eql?' do
|
|
39
39
|
end
|
40
40
|
|
41
41
|
context 'with an object having different attributes' do
|
42
|
-
let(:other_attributes) { [
|
42
|
+
let(:other_attributes) { [[:name, String]] }
|
43
43
|
let(:other) { described_class.coerce(other_attributes) }
|
44
44
|
|
45
45
|
it { should be(false) }
|
@@ -50,10 +50,10 @@ describe Relation::Header, '#eql?' do
|
|
50
50
|
end
|
51
51
|
|
52
52
|
context 'with an object having equivalent attributes in a different order' do
|
53
|
-
let(:attribute1) { [
|
54
|
-
let(:attribute2) { [
|
55
|
-
let(:object) { described_class.coerce([
|
56
|
-
let(:other) { described_class.coerce([
|
53
|
+
let(:attribute1) { [:id, Integer] }
|
54
|
+
let(:attribute2) { [:name, String] }
|
55
|
+
let(:object) { described_class.coerce([attribute1, attribute2]) }
|
56
|
+
let(:other) { described_class.coerce([attribute2, attribute1]) }
|
57
57
|
|
58
58
|
it { should be(true) }
|
59
59
|
|
@@ -5,7 +5,7 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#==' do
|
6
6
|
subject { object == other }
|
7
7
|
|
8
|
-
let(:attributes) { [
|
8
|
+
let(:attributes) { [[:id, Integer]] }
|
9
9
|
let(:object) { described_class.coerce(attributes) }
|
10
10
|
|
11
11
|
context 'with the same object' do
|
@@ -39,7 +39,7 @@ describe Relation::Header, '#==' do
|
|
39
39
|
end
|
40
40
|
|
41
41
|
context 'with an object having different attributes' do
|
42
|
-
let(:other_attributes) { [
|
42
|
+
let(:other_attributes) { [[:name, String]] }
|
43
43
|
let(:other) { described_class.coerce(other_attributes) }
|
44
44
|
|
45
45
|
it { should be(false) }
|
@@ -50,10 +50,10 @@ describe Relation::Header, '#==' do
|
|
50
50
|
end
|
51
51
|
|
52
52
|
context 'with an object having equivalent attributes in a different order' do
|
53
|
-
let(:attribute1) { [
|
54
|
-
let(:attribute2) { [
|
55
|
-
let(:object) { described_class.coerce([
|
56
|
-
let(:other) { described_class.coerce([
|
53
|
+
let(:attribute1) { [:id, Integer] }
|
54
|
+
let(:attribute2) { [:name, String] }
|
55
|
+
let(:object) { described_class.coerce([attribute1, attribute2]) }
|
56
|
+
let(:other) { described_class.coerce([attribute2, attribute1]) }
|
57
57
|
|
58
58
|
it { should be(true) }
|
59
59
|
|
@@ -73,7 +73,7 @@ describe Relation::Header, '#==' do
|
|
73
73
|
end
|
74
74
|
|
75
75
|
context 'with an equivalent object with no type responding to #to_ary' do
|
76
|
-
let(:other) { [
|
76
|
+
let(:other) { [:id] }
|
77
77
|
|
78
78
|
it { should be(true) }
|
79
79
|
|
@@ -83,7 +83,7 @@ describe Relation::Header, '#==' do
|
|
83
83
|
end
|
84
84
|
|
85
85
|
context 'with a different object responding to #to_ary' do
|
86
|
-
let(:other) { [
|
86
|
+
let(:other) { [[:name, String]] }
|
87
87
|
|
88
88
|
it { should be(false) }
|
89
89
|
|
@@ -5,31 +5,31 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#extend' do
|
6
6
|
subject { object.extend(attributes) }
|
7
7
|
|
8
|
-
let(:object) { described_class.coerce([
|
9
|
-
let(:keys) { Relation::Keys.new([
|
8
|
+
let(:object) { described_class.coerce([[:id, Integer]], keys: keys) }
|
9
|
+
let(:keys) { Relation::Keys.new([described_class.new]) }
|
10
10
|
|
11
11
|
context 'with attribute objects' do
|
12
|
-
let(:attributes) { [
|
12
|
+
let(:attributes) { [attribute] }
|
13
13
|
let(:attribute) { Attribute::String.new(:name) }
|
14
14
|
|
15
15
|
it { should be_instance_of(described_class) }
|
16
16
|
|
17
17
|
it 'uses the attribute object' do
|
18
|
-
subject[:name].should
|
18
|
+
subject[:name].should be(attribute)
|
19
19
|
end
|
20
20
|
|
21
|
-
its(:to_ary) { should == [
|
21
|
+
its(:to_ary) { should == [[:id, Integer], [:name, String]] }
|
22
22
|
|
23
|
-
its(:keys) { should
|
23
|
+
its(:keys) { should be(keys) }
|
24
24
|
end
|
25
25
|
|
26
26
|
context 'with Symbol attributes' do
|
27
|
-
let(:attributes) { [
|
27
|
+
let(:attributes) { [:name] }
|
28
28
|
|
29
29
|
it { should be_instance_of(described_class) }
|
30
30
|
|
31
|
-
its(:to_ary) { should == [
|
31
|
+
its(:to_ary) { should == [[:id, Integer], [:name, Object]] }
|
32
32
|
|
33
|
-
its(:keys) { should
|
33
|
+
its(:keys) { should be(keys) }
|
34
34
|
end
|
35
35
|
end
|
@@ -5,9 +5,9 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#hash' do
|
6
6
|
subject { object.hash }
|
7
7
|
|
8
|
-
let(:object) { described_class.new([
|
9
|
-
let(:attribute) { Attribute::Integer.new(:id)
|
10
|
-
let(:keys) { Relation::Keys.new
|
8
|
+
let(:object) { described_class.new([attribute], keys: keys) }
|
9
|
+
let(:attribute) { Attribute::Integer.new(:id) }
|
10
|
+
let(:keys) { Relation::Keys.new }
|
11
11
|
|
12
12
|
it_should_behave_like 'a hash method'
|
13
13
|
|
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
|
-
[
|
5
|
+
[:intersect, :&].each do |method|
|
6
6
|
describe Relation::Header, "##{method}" do
|
7
7
|
subject { object.send(method, other) }
|
8
8
|
|
9
9
|
let(:object) { described_class.coerce(attributes, options) }
|
10
10
|
let(:other) { described_class.coerce(other_attributes, other_options) }
|
11
|
-
let(:attributes) { [
|
11
|
+
let(:attributes) { [[:id, Integer], [:name, String]] }
|
12
12
|
let(:other_attributes) { attributes }
|
13
13
|
let(:options) { {} }
|
14
14
|
let(:other_options) { options }
|
15
|
-
let(:keys) { Relation::Keys.coerce([
|
15
|
+
let(:keys) { Relation::Keys.coerce([[[:id, Integer]]]) }
|
16
16
|
let(:other_keys) { keys }
|
17
17
|
|
18
18
|
context 'when the attributes are equivalent' do
|
@@ -24,7 +24,7 @@ require 'spec_helper'
|
|
24
24
|
end
|
25
25
|
|
26
26
|
context 'when the attributes intersect' do
|
27
|
-
let(:other_attributes) { [
|
27
|
+
let(:other_attributes) { [[:id, Integer]] }
|
28
28
|
|
29
29
|
it { should be_instance_of(described_class) }
|
30
30
|
|
@@ -34,7 +34,7 @@ require 'spec_helper'
|
|
34
34
|
end
|
35
35
|
|
36
36
|
context 'when the attributes do not intersect' do
|
37
|
-
let(:other_attributes) { [
|
37
|
+
let(:other_attributes) { [[:age, Integer]] }
|
38
38
|
|
39
39
|
it { should be_instance_of(described_class) }
|
40
40
|
|
@@ -44,8 +44,8 @@ require 'spec_helper'
|
|
44
44
|
end
|
45
45
|
|
46
46
|
context 'when the keys are equivalent' do
|
47
|
-
let(:other_attributes) { [
|
48
|
-
let(:options) { { :
|
47
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
48
|
+
let(:options) { { keys: keys } }
|
49
49
|
|
50
50
|
it { should be_instance_of(described_class) }
|
51
51
|
|
@@ -55,38 +55,38 @@ require 'spec_helper'
|
|
55
55
|
end
|
56
56
|
|
57
57
|
context 'when the keys intersect' do
|
58
|
-
let(:other_attributes) { [
|
59
|
-
let(:options) { { :
|
60
|
-
let(:other_options) { { :
|
58
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
59
|
+
let(:options) { { keys: keys } }
|
60
|
+
let(:other_options) { { keys: other_keys } }
|
61
61
|
|
62
62
|
let(:other_keys) do
|
63
63
|
Relation::Keys.coerce([
|
64
|
-
[
|
65
|
-
[
|
66
|
-
|
64
|
+
[[:id, Integer]],
|
65
|
+
[[:age, Integer]],
|
66
|
+
])
|
67
67
|
end
|
68
68
|
|
69
69
|
it { should be_instance_of(described_class) }
|
70
70
|
|
71
71
|
its(:to_ary) { should == attributes }
|
72
72
|
|
73
|
-
its(:keys) { should == [
|
73
|
+
its(:keys) { should == [[[:id, Integer]]] }
|
74
74
|
end
|
75
75
|
|
76
76
|
context 'when the keys do not intersect' do
|
77
|
-
let(:other_attributes) { [
|
78
|
-
let(:options) { { :
|
79
|
-
let(:other_options) { { :
|
77
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
78
|
+
let(:options) { { keys: keys } }
|
79
|
+
let(:other_options) { { keys: other_keys } }
|
80
80
|
|
81
81
|
let(:other_keys) do
|
82
|
-
Relation::Keys.coerce([
|
82
|
+
Relation::Keys.coerce([[[:name, String], [:age, Integer]]])
|
83
83
|
end
|
84
84
|
|
85
85
|
it { should be_instance_of(described_class) }
|
86
86
|
|
87
87
|
its(:to_ary) { should == attributes }
|
88
88
|
|
89
|
-
its(:keys) { should == [
|
89
|
+
its(:keys) { should == [[[:id, Integer]], [[:name, String]]] }
|
90
90
|
end
|
91
91
|
|
92
92
|
context 'when the other can be coerced into a Header' do
|
@@ -5,17 +5,17 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#keys' do
|
6
6
|
subject { object.keys }
|
7
7
|
|
8
|
-
let(:attributes) { [
|
9
|
-
let(:keys_class) { Relation::Keys
|
8
|
+
let(:attributes) { [[:id, Integer], [:name, String]] }
|
9
|
+
let(:keys_class) { Relation::Keys }
|
10
10
|
|
11
11
|
context 'with explicit keys' do
|
12
|
-
let(:object) { described_class.coerce(attributes, :
|
13
|
-
let(:keys) { [
|
12
|
+
let(:object) { described_class.coerce(attributes, keys: keys) }
|
13
|
+
let(:keys) { [[:id]] }
|
14
14
|
|
15
15
|
it { should be_instance_of(keys_class) }
|
16
16
|
|
17
17
|
it 'has a set of keys' do
|
18
|
-
should == keys_class.new([
|
18
|
+
should == keys_class.new([described_class.new([object[:id]])])
|
19
19
|
end
|
20
20
|
|
21
21
|
it { should be_frozen }
|
@@ -5,41 +5,41 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#project' do
|
6
6
|
subject { object.project(attributes) }
|
7
7
|
|
8
|
-
let(:object) { described_class.coerce([
|
9
|
-
let(:keys) { Relation::Keys.new([
|
8
|
+
let(:object) { described_class.coerce([[:id, Integer], [:name, String]], keys: keys) }
|
9
|
+
let(:keys) { Relation::Keys.new([described_class.coerce([[:id, Integer], [:name, String]])]) }
|
10
10
|
|
11
11
|
context 'with attribute objects' do
|
12
|
-
let(:attributes) { [
|
12
|
+
let(:attributes) { [attribute] }
|
13
13
|
let(:attribute) { Attribute::Integer.new(:id) }
|
14
14
|
|
15
15
|
it { should be_instance_of(described_class) }
|
16
16
|
|
17
17
|
it 'uses the attribute object' do
|
18
|
-
subject[:id].should
|
18
|
+
subject[:id].should be(attribute)
|
19
19
|
end
|
20
20
|
|
21
|
-
its(:to_ary) { should == [
|
21
|
+
its(:to_ary) { should == [[:id, Integer]] }
|
22
22
|
|
23
|
-
its(:keys) { should eql(Relation::Keys.new([
|
23
|
+
its(:keys) { should eql(Relation::Keys.new([described_class.coerce([[:id, Integer]])])) }
|
24
24
|
end
|
25
25
|
|
26
26
|
context 'with Symbol attributes' do
|
27
|
-
let(:attributes) { [
|
27
|
+
let(:attributes) { [:id] }
|
28
28
|
|
29
29
|
it { should be_instance_of(described_class) }
|
30
30
|
|
31
|
-
its(:to_ary) { should == [
|
31
|
+
its(:to_ary) { should == [[:id, Integer]] }
|
32
32
|
|
33
|
-
its(:keys) { should eql(Relation::Keys.new([
|
33
|
+
its(:keys) { should eql(Relation::Keys.new([described_class.coerce([[:id, Integer]])])) }
|
34
34
|
end
|
35
35
|
|
36
36
|
context 'when the header has no keys' do
|
37
37
|
let(:keys) { Relation::Keys.new }
|
38
|
-
let(:attributes) { [
|
38
|
+
let(:attributes) { [:id] }
|
39
39
|
|
40
40
|
it { should be_instance_of(described_class) }
|
41
41
|
|
42
|
-
its(:to_ary) { should == [
|
42
|
+
its(:to_ary) { should == [[:id, Integer]] }
|
43
43
|
|
44
44
|
its(:keys) { should be_empty }
|
45
45
|
end
|
@@ -5,15 +5,15 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#rename' do
|
6
6
|
subject { object.rename(aliases) }
|
7
7
|
|
8
|
-
let(:object) { described_class.coerce([
|
9
|
-
let(:aliases) { Algebra::Rename::Aliases.coerce(object, :
|
10
|
-
let(:keys) { Relation::Keys.new([
|
8
|
+
let(:object) { described_class.coerce([[:id, Integer], [:name, String]], keys: keys) }
|
9
|
+
let(:aliases) { Algebra::Rename::Aliases.coerce(object, id: :other_id) }
|
10
|
+
let(:keys) { Relation::Keys.new([described_class.coerce([[:id, Integer]])]) }
|
11
11
|
|
12
12
|
it { should be_instance_of(described_class) }
|
13
13
|
|
14
|
-
it { should_not
|
14
|
+
it { should_not be(object) }
|
15
15
|
|
16
|
-
its(:to_ary) { should == [
|
16
|
+
its(:to_ary) { should == [[:other_id, Integer], [:name, String]] }
|
17
17
|
|
18
|
-
its(:keys) { should eql(Relation::Keys.new([
|
18
|
+
its(:keys) { should eql(Relation::Keys.new([described_class.coerce([[:other_id, Integer]])])) }
|
19
19
|
end
|
@@ -5,12 +5,12 @@ require 'spec_helper'
|
|
5
5
|
describe Relation::Header, '#to_ary' do
|
6
6
|
subject { object.to_ary }
|
7
7
|
|
8
|
-
let(:attribute) { [
|
9
|
-
let(:object) { described_class.coerce([
|
8
|
+
let(:attribute) { [:id, Integer] }
|
9
|
+
let(:object) { described_class.coerce([attribute]) }
|
10
10
|
|
11
11
|
it { should be_instance_of(Array) }
|
12
12
|
|
13
|
-
it { should == [
|
13
|
+
it { should == [attribute] }
|
14
14
|
|
15
15
|
it { should be_frozen }
|
16
16
|
end
|
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
|
-
[
|
5
|
+
[:union, :|].each do |method|
|
6
6
|
describe Relation::Header, "##{method}" do
|
7
7
|
subject { object.send(method, other) }
|
8
8
|
|
9
9
|
let(:object) { described_class.coerce(attributes, options) }
|
10
10
|
let(:other) { described_class.coerce(other_attributes, other_options) }
|
11
|
-
let(:attributes) { [
|
11
|
+
let(:attributes) { [[:id, Integer], [:name, String]] }
|
12
12
|
let(:other_attributes) { attributes }
|
13
13
|
let(:options) { {} }
|
14
14
|
let(:other_options) { options }
|
15
|
-
let(:keys) { Relation::Keys.coerce([
|
15
|
+
let(:keys) { Relation::Keys.coerce([[[:id, Integer]]]) }
|
16
16
|
let(:other_keys) { keys }
|
17
17
|
|
18
18
|
context 'when the attributes are equivalent' do
|
@@ -24,28 +24,28 @@ require 'spec_helper'
|
|
24
24
|
end
|
25
25
|
|
26
26
|
context 'when the attributes intersect' do
|
27
|
-
let(:other_attributes) { [
|
27
|
+
let(:other_attributes) { [[:id, Integer]] }
|
28
28
|
|
29
29
|
it { should be_instance_of(described_class) }
|
30
30
|
|
31
|
-
its(:to_ary) { should == [
|
31
|
+
its(:to_ary) { should == [[:id, Integer], [:name, String]] }
|
32
32
|
|
33
33
|
its(:keys) { should be_empty }
|
34
34
|
end
|
35
35
|
|
36
36
|
context 'when the attributes do not intersect' do
|
37
|
-
let(:other_attributes) { [
|
37
|
+
let(:other_attributes) { [[:age, Integer]] }
|
38
38
|
|
39
39
|
it { should be_instance_of(described_class) }
|
40
40
|
|
41
|
-
its(:to_ary) { should == [
|
41
|
+
its(:to_ary) { should == [[:id, Integer], [:name, String], [:age, Integer]] }
|
42
42
|
|
43
43
|
its(:keys) { should be_empty }
|
44
44
|
end
|
45
45
|
|
46
46
|
context 'when the keys are equivalent' do
|
47
|
-
let(:other_attributes) { [
|
48
|
-
let(:options) { { :
|
47
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
48
|
+
let(:options) { { keys: keys } }
|
49
49
|
|
50
50
|
it { should be_instance_of(described_class) }
|
51
51
|
|
@@ -55,31 +55,31 @@ require 'spec_helper'
|
|
55
55
|
end
|
56
56
|
|
57
57
|
context 'when the keys intersect' do
|
58
|
-
let(:other_attributes) { [
|
59
|
-
let(:options) { { :
|
60
|
-
let(:other_options) { { :
|
58
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
59
|
+
let(:options) { { keys: keys } }
|
60
|
+
let(:other_options) { { keys: other_keys } }
|
61
61
|
|
62
62
|
let(:other_keys) do
|
63
63
|
Relation::Keys.coerce([
|
64
|
-
[
|
65
|
-
[
|
66
|
-
|
64
|
+
[[:id, Integer]],
|
65
|
+
[[:age, Integer]],
|
66
|
+
])
|
67
67
|
end
|
68
68
|
|
69
69
|
it { should be_instance_of(described_class) }
|
70
70
|
|
71
71
|
its(:to_ary) { should == other_attributes }
|
72
72
|
|
73
|
-
its(:keys) { should == [
|
73
|
+
its(:keys) { should == [[[:id, Integer]]] }
|
74
74
|
end
|
75
75
|
|
76
76
|
context 'when the keys do not intersect' do
|
77
|
-
let(:other_attributes) { [
|
78
|
-
let(:options) { { :
|
79
|
-
let(:other_options) { { :
|
77
|
+
let(:other_attributes) { [[:id, Integer], [:name, String], [:age, Integer]] }
|
78
|
+
let(:options) { { keys: keys } }
|
79
|
+
let(:other_options) { { keys: other_keys } }
|
80
80
|
|
81
81
|
let(:other_keys) do
|
82
|
-
Relation::Keys.coerce([
|
82
|
+
Relation::Keys.coerce([[[:name, String], [:age, Integer]]])
|
83
83
|
end
|
84
84
|
|
85
85
|
it { should be_instance_of(described_class) }
|