veritas 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (244) hide show
  1. data/.travis.yml +4 -2
  2. data/Gemfile +7 -8
  3. data/README.rdoc +17 -18
  4. data/Rakefile +2 -2
  5. data/TODO +18 -14
  6. data/benchmarks/memory.rb +8 -7
  7. data/benchmarks/speed.rb +4 -3
  8. data/config/flay.yml +1 -1
  9. data/lib/veritas/aggregate.rb +3 -0
  10. data/lib/veritas/algebra/join.rb +11 -4
  11. data/lib/veritas/algebra/product.rb +2 -1
  12. data/lib/veritas/algebra/restriction.rb +3 -2
  13. data/lib/veritas/algebra/summarization.rb +8 -3
  14. data/lib/veritas/attribute/string.rb +3 -1
  15. data/lib/veritas/attribute.rb +1 -1
  16. data/lib/veritas/function/binary.rb +1 -0
  17. data/lib/veritas/function/comparable.rb +1 -0
  18. data/lib/veritas/function/connective/negation.rb +2 -0
  19. data/lib/veritas/function/proposition.rb +5 -1
  20. data/lib/veritas/function/unary.rb +1 -0
  21. data/lib/veritas/function.rb +3 -0
  22. data/lib/veritas/relation/base.rb +32 -3
  23. data/lib/veritas/relation/header.rb +2 -2
  24. data/lib/veritas/relation/materialized.rb +12 -0
  25. data/lib/veritas/relation/operation/binary.rb +1 -0
  26. data/lib/veritas/relation/operation/limit.rb +1 -1
  27. data/lib/veritas/relation/operation/offset.rb +1 -1
  28. data/lib/veritas/relation/operation/order/direction_set.rb +67 -5
  29. data/lib/veritas/relation/operation/order.rb +25 -3
  30. data/lib/veritas/relation/operation/set.rb +1 -0
  31. data/lib/veritas/relation.rb +20 -7
  32. data/lib/veritas/support/abstract_class.rb +1 -0
  33. data/lib/veritas/support/evaluator.rb +49 -3
  34. data/lib/veritas/support/immutable.rb +2 -1
  35. data/lib/veritas/tuple.rb +28 -14
  36. data/lib/veritas/version.rb +1 -1
  37. data/lib/veritas.rb +6 -3
  38. data/spec/integration/veritas/algebra/projection_spec.rb +4 -4
  39. data/spec/integration/veritas/relation/efficient_enumerable_spec.rb +1 -1
  40. data/spec/shared/each_method_behaviour.rb +2 -2
  41. data/spec/shared/hash_method_behavior.rb +2 -2
  42. data/spec/spec_helper.rb +1 -0
  43. data/spec/unit/date/pred_spec.rb +3 -3
  44. data/spec/unit/range/overlaps_spec.rb +14 -14
  45. data/spec/unit/range/to_inclusive_spec.rb +2 -2
  46. data/spec/unit/time/pred_spec.rb +3 -3
  47. data/spec/unit/veritas/abstract_class/class_methods/new_spec.rb +1 -1
  48. data/spec/unit/veritas/aggregate/count/class_methods/call_spec.rb +1 -1
  49. data/spec/unit/veritas/aggregate/count/methods/count_spec.rb +1 -1
  50. data/spec/unit/veritas/aggregate/maximum/methods/maximum_spec.rb +1 -1
  51. data/spec/unit/veritas/aggregate/mean/class_methods/call_spec.rb +1 -1
  52. data/spec/unit/veritas/aggregate/mean/methods/mean_spec.rb +1 -1
  53. data/spec/unit/veritas/aggregate/minimum/methods/minimum_spec.rb +1 -1
  54. data/spec/unit/veritas/aggregate/standard_deviation/methods/standard_deviation_spec.rb +1 -1
  55. data/spec/unit/veritas/aggregate/sum/class_methods/call_spec.rb +1 -1
  56. data/spec/unit/veritas/aggregate/sum/methods/sum_spec.rb +1 -1
  57. data/spec/unit/veritas/aggregate/variance/class_methods/call_spec.rb +1 -1
  58. data/spec/unit/veritas/aggregate/variance/methods/variance_spec.rb +1 -1
  59. data/spec/unit/veritas/algebra/difference/methods/difference_spec.rb +2 -2
  60. data/spec/unit/veritas/algebra/extension/class_methods/new_spec.rb +1 -1
  61. data/spec/unit/veritas/algebra/extension/eql_spec.rb +5 -5
  62. data/spec/unit/veritas/algebra/extension/header_spec.rb +1 -1
  63. data/spec/unit/veritas/algebra/extension/methods/extend_spec.rb +1 -1
  64. data/spec/unit/veritas/algebra/intersection/methods/intersect_spec.rb +2 -2
  65. data/spec/unit/veritas/algebra/join/class_methods/new_spec.rb +2 -2
  66. data/spec/unit/veritas/algebra/join/join_header_spec.rb +17 -0
  67. data/spec/unit/veritas/algebra/join/methods/join_spec.rb +2 -2
  68. data/spec/unit/veritas/algebra/product/class_methods/new_spec.rb +1 -1
  69. data/spec/unit/veritas/algebra/product/methods/product_spec.rb +1 -1
  70. data/spec/unit/veritas/algebra/projection/eql_spec.rb +5 -5
  71. data/spec/unit/veritas/algebra/projection/header_spec.rb +1 -1
  72. data/spec/unit/veritas/algebra/projection/methods/project_spec.rb +1 -1
  73. data/spec/unit/veritas/algebra/projection/methods/remove_spec.rb +1 -1
  74. data/spec/unit/veritas/algebra/rename/aliases/class_methods/coerce_spec.rb +4 -4
  75. data/spec/unit/veritas/algebra/rename/aliases/class_methods/new_spec.rb +1 -1
  76. data/spec/unit/veritas/algebra/rename/aliases/eql_spec.rb +4 -4
  77. data/spec/unit/veritas/algebra/rename/aliases/equal_value_spec.rb +4 -4
  78. data/spec/unit/veritas/algebra/rename/aliases/to_hash_spec.rb +1 -1
  79. data/spec/unit/veritas/algebra/rename/aliases/union_spec.rb +10 -10
  80. data/spec/unit/veritas/algebra/rename/directions_spec.rb +3 -3
  81. data/spec/unit/veritas/algebra/rename/eql_spec.rb +5 -5
  82. data/spec/unit/veritas/algebra/rename/header_spec.rb +1 -1
  83. data/spec/unit/veritas/algebra/rename/methods/rename_spec.rb +1 -1
  84. data/spec/unit/veritas/algebra/restriction/eql_spec.rb +5 -5
  85. data/spec/unit/veritas/algebra/restriction/methods/restrict_spec.rb +1 -1
  86. data/spec/unit/veritas/algebra/summarization/class_methods/new_spec.rb +1 -1
  87. data/spec/unit/veritas/algebra/summarization/eql_spec.rb +7 -7
  88. data/spec/unit/veritas/algebra/summarization/header_spec.rb +1 -1
  89. data/spec/unit/veritas/algebra/summarization/methods/summarize_spec.rb +18 -8
  90. data/spec/unit/veritas/algebra/summarization/summaries/summarize_by_spec.rb +3 -3
  91. data/spec/unit/veritas/algebra/summarization/summaries/to_hash_spec.rb +2 -2
  92. data/spec/unit/veritas/algebra/summarization/summary/summarize_by_spec.rb +1 -1
  93. data/spec/unit/veritas/algebra/union/methods/union_spec.rb +2 -2
  94. data/spec/unit/veritas/aliasable/inheritable_alias_spec.rb +2 -2
  95. data/spec/unit/veritas/attribute/class_methods/coerce_spec.rb +4 -4
  96. data/spec/unit/veritas/attribute/class_methods/descendants_spec.rb +2 -6
  97. data/spec/unit/veritas/attribute/class_methods/new_spec.rb +1 -1
  98. data/spec/unit/veritas/attribute/comparable/comparable_spec.rb +3 -3
  99. data/spec/unit/veritas/attribute/eql_spec.rb +4 -4
  100. data/spec/unit/veritas/attribute/equal_value_spec.rb +4 -4
  101. data/spec/unit/veritas/attribute/inspect_spec.rb +1 -1
  102. data/spec/unit/veritas/attribute/joinable_spec.rb +4 -4
  103. data/spec/unit/veritas/attribute/numeric/joinable_spec.rb +3 -3
  104. data/spec/unit/veritas/attribute/options_spec.rb +2 -2
  105. data/spec/unit/veritas/attribute/orderable/asc_spec.rb +1 -1
  106. data/spec/unit/veritas/attribute/orderable/desc_spec.rb +1 -1
  107. data/spec/unit/veritas/attribute/rename_spec.rb +1 -1
  108. data/spec/unit/veritas/attribute/string/joinable_spec.rb +14 -4
  109. data/spec/unit/veritas/evaluator/context/method_missing_spec.rb +29 -0
  110. data/spec/unit/veritas/evaluator/context/respond_to_spec.rb +39 -0
  111. data/spec/unit/veritas/evaluator/context/send_spec.rb +28 -0
  112. data/spec/unit/veritas/evaluator/context/yield_spec.rb +14 -0
  113. data/spec/unit/veritas/function/binary/equal_value_spec.rb +5 -5
  114. data/spec/unit/veritas/function/binary/invertible/inverse_spec.rb +1 -1
  115. data/spec/unit/veritas/function/binary/rename_spec.rb +3 -3
  116. data/spec/unit/veritas/function/connective/conjunction/inverse_spec.rb +1 -1
  117. data/spec/unit/veritas/function/connective/disjunction/inverse_spec.rb +1 -1
  118. data/spec/unit/veritas/function/connective/negation/methods/not_spec.rb +2 -2
  119. data/spec/unit/veritas/function/numeric/absolute/methods/absolute_spec.rb +1 -1
  120. data/spec/unit/veritas/function/numeric/addition/methods/add_spec.rb +1 -1
  121. data/spec/unit/veritas/function/numeric/division/methods/divide_spec.rb +1 -1
  122. data/spec/unit/veritas/function/numeric/exponentiation/inverse_spec.rb +1 -1
  123. data/spec/unit/veritas/function/numeric/exponentiation/methods/exponent_spec.rb +1 -1
  124. data/spec/unit/veritas/function/numeric/modulo/methods/modulo_spec.rb +1 -1
  125. data/spec/unit/veritas/function/numeric/multiplication/methods/multiply_spec.rb +1 -1
  126. data/spec/unit/veritas/function/numeric/square_root/methods/square_root_spec.rb +1 -1
  127. data/spec/unit/veritas/function/numeric/subtraction/methods/subtract_spec.rb +1 -1
  128. data/spec/unit/veritas/function/numeric/unary_minus/methods/unary_minus_spec.rb +1 -1
  129. data/spec/unit/veritas/function/numeric/unary_plus/methods/unary_plus_spec.rb +1 -1
  130. data/spec/unit/veritas/function/predicate/eql_spec.rb +5 -5
  131. data/spec/unit/veritas/function/predicate/equality/inverse_spec.rb +1 -1
  132. data/spec/unit/veritas/function/predicate/equality/methods/eq_spec.rb +1 -1
  133. data/spec/unit/veritas/function/predicate/exclusion/inverse_spec.rb +1 -1
  134. data/spec/unit/veritas/function/predicate/exclusion/methods/exclude_spec.rb +1 -1
  135. data/spec/unit/veritas/function/predicate/greater_than/inverse_spec.rb +1 -1
  136. data/spec/unit/veritas/function/predicate/greater_than/methods/gt_spec.rb +1 -1
  137. data/spec/unit/veritas/function/predicate/greater_than_or_equal_to/inverse_spec.rb +1 -1
  138. data/spec/unit/veritas/function/predicate/greater_than_or_equal_to/methods/gte_spec.rb +1 -1
  139. data/spec/unit/veritas/function/predicate/inclusion/inverse_spec.rb +1 -1
  140. data/spec/unit/veritas/function/predicate/inclusion/methods/include_spec.rb +1 -1
  141. data/spec/unit/veritas/function/predicate/inequality/inverse_spec.rb +1 -1
  142. data/spec/unit/veritas/function/predicate/inequality/methods/ne_spec.rb +1 -1
  143. data/spec/unit/veritas/function/predicate/inverse_spec.rb +1 -1
  144. data/spec/unit/veritas/function/predicate/less_than/inverse_spec.rb +1 -1
  145. data/spec/unit/veritas/function/predicate/less_than/methods/lt_spec.rb +1 -1
  146. data/spec/unit/veritas/function/predicate/less_than_or_equal_to/inverse_spec.rb +1 -1
  147. data/spec/unit/veritas/function/predicate/less_than_or_equal_to/methods/lte_spec.rb +1 -1
  148. data/spec/unit/veritas/function/predicate/match/inverse_spec.rb +1 -1
  149. data/spec/unit/veritas/function/predicate/match/methods/match_spec.rb +1 -1
  150. data/spec/unit/veritas/function/predicate/no_match/inverse_spec.rb +1 -1
  151. data/spec/unit/veritas/function/predicate/no_match/methods/no_match_spec.rb +1 -1
  152. data/spec/unit/veritas/function/proposition/eql_spec.rb +3 -3
  153. data/spec/unit/veritas/function/proposition/equal_value_spec.rb +3 -3
  154. data/spec/unit/veritas/function/string/length/methods/length_spec.rb +1 -1
  155. data/spec/unit/veritas/function/unary/equal_value_spec.rb +4 -4
  156. data/spec/unit/veritas/function/unary/invertible/inverse_spec.rb +1 -1
  157. data/spec/unit/veritas/function/unary/rename_spec.rb +1 -1
  158. data/spec/unit/veritas/immutable/class_methods/freeze_object_spec.rb +7 -1
  159. data/spec/unit/veritas/immutable/class_methods/new_spec.rb +1 -1
  160. data/spec/unit/veritas/immutable/freeze_spec.rb +2 -2
  161. data/spec/unit/veritas/immutable/module_methods/memoize_spec.rb +2 -2
  162. data/spec/unit/veritas/operation/binary/eql_spec.rb +5 -5
  163. data/spec/unit/veritas/operation/unary/eql_spec.rb +4 -4
  164. data/spec/unit/veritas/relation/base/class_methods/new_spec.rb +35 -0
  165. data/spec/unit/veritas/relation/base/eql_spec.rb +100 -0
  166. data/spec/unit/veritas/relation/base/hash_spec.rb +16 -0
  167. data/spec/unit/veritas/relation/class_methods/new_spec.rb +2 -2
  168. data/spec/unit/veritas/relation/directions_spec.rb +1 -1
  169. data/spec/unit/veritas/relation/eql_spec.rb +15 -15
  170. data/spec/unit/veritas/relation/equal_value_spec.rb +16 -16
  171. data/spec/unit/veritas/relation/header/class_methods/coerce_spec.rb +1 -1
  172. data/spec/unit/veritas/relation/header/class_methods/new_spec.rb +2 -2
  173. data/spec/unit/veritas/relation/header/difference_spec.rb +1 -1
  174. data/spec/unit/veritas/relation/header/eql_spec.rb +5 -5
  175. data/spec/unit/veritas/relation/header/equal_value_spec.rb +7 -7
  176. data/spec/unit/veritas/relation/header/inspect_spec.rb +1 -1
  177. data/spec/unit/veritas/relation/header/intersect_spec.rb +1 -1
  178. data/spec/unit/veritas/relation/header/project_spec.rb +1 -1
  179. data/spec/unit/veritas/relation/header/rename_spec.rb +1 -1
  180. data/spec/unit/veritas/relation/header/to_ary_spec.rb +1 -1
  181. data/spec/unit/veritas/relation/header/union_spec.rb +1 -1
  182. data/spec/unit/veritas/relation/materialize_spec.rb +3 -3
  183. data/spec/unit/veritas/relation/materialized/class_methods/new_spec.rb +2 -2
  184. data/spec/unit/veritas/relation/materialized/materialized_spec.rb +15 -0
  185. data/spec/unit/veritas/relation/materialized_spec.rb +15 -0
  186. data/spec/unit/veritas/relation/operation/binary/class_methods/new_spec.rb +6 -6
  187. data/spec/unit/veritas/relation/operation/binary/header_spec.rb +1 -1
  188. data/spec/unit/veritas/relation/operation/combination/header_spec.rb +1 -1
  189. data/spec/unit/veritas/relation/operation/limit/class_methods/new_spec.rb +12 -5
  190. data/spec/unit/veritas/relation/operation/limit/directions_spec.rb +1 -1
  191. data/spec/unit/veritas/relation/operation/limit/each_spec.rb +1 -1
  192. data/spec/unit/veritas/relation/operation/limit/eql_spec.rb +11 -11
  193. data/spec/unit/veritas/relation/operation/limit/hash_spec.rb +1 -1
  194. data/spec/unit/veritas/relation/operation/limit/limit_spec.rb +1 -1
  195. data/spec/unit/veritas/relation/operation/limit/methods/first_spec.rb +3 -3
  196. data/spec/unit/veritas/relation/operation/limit/methods/last_spec.rb +3 -3
  197. data/spec/unit/veritas/relation/operation/limit/methods/take_spec.rb +2 -2
  198. data/spec/unit/veritas/relation/operation/offset/class_methods/new_spec.rb +12 -5
  199. data/spec/unit/veritas/relation/operation/offset/directions_spec.rb +1 -1
  200. data/spec/unit/veritas/relation/operation/offset/each_spec.rb +1 -1
  201. data/spec/unit/veritas/relation/operation/offset/eql_spec.rb +11 -11
  202. data/spec/unit/veritas/relation/operation/offset/hash_spec.rb +1 -1
  203. data/spec/unit/veritas/relation/operation/offset/methods/drop_spec.rb +2 -2
  204. data/spec/unit/veritas/relation/operation/offset/offset_spec.rb +1 -1
  205. data/spec/unit/veritas/relation/operation/order/ascending/reverse_spec.rb +1 -1
  206. data/spec/unit/veritas/relation/operation/order/class_methods/new_spec.rb +3 -7
  207. data/spec/unit/veritas/relation/operation/order/descending/reverse_spec.rb +1 -1
  208. data/spec/unit/veritas/relation/operation/order/direction/class_methods/coerce_spec.rb +1 -1
  209. data/spec/unit/veritas/relation/operation/order/direction/eql_spec.rb +4 -4
  210. data/spec/unit/veritas/relation/operation/order/direction/rename_spec.rb +1 -1
  211. data/spec/unit/veritas/relation/operation/order/direction_set/attributes_spec.rb +1 -1
  212. data/spec/unit/veritas/relation/operation/order/direction_set/class_methods/coerce_spec.rb +4 -4
  213. data/spec/unit/veritas/relation/operation/order/direction_set/class_methods/new_spec.rb +32 -0
  214. data/spec/unit/veritas/relation/operation/order/direction_set/eql_spec.rb +4 -4
  215. data/spec/unit/veritas/relation/operation/order/direction_set/equal_value_spec.rb +6 -6
  216. data/spec/unit/veritas/relation/operation/order/direction_set/project_spec.rb +1 -1
  217. data/spec/unit/veritas/relation/operation/order/direction_set/rename_spec.rb +1 -1
  218. data/spec/unit/veritas/relation/operation/order/direction_set/reverse_spec.rb +2 -2
  219. data/spec/unit/veritas/relation/operation/order/direction_set/sort_tuples_spec.rb +4 -4
  220. data/spec/unit/veritas/relation/operation/order/direction_set/to_ary_spec.rb +1 -1
  221. data/spec/unit/veritas/relation/operation/order/direction_set/union_spec.rb +1 -1
  222. data/spec/unit/veritas/relation/operation/order/eql_spec.rb +5 -5
  223. data/spec/unit/veritas/relation/operation/order/methods/order_spec.rb +24 -4
  224. data/spec/unit/veritas/relation/operation/order/methods/sort_by_spec.rb +28 -0
  225. data/spec/unit/veritas/relation/operation/reverse/class_methods/new_spec.rb +6 -6
  226. data/spec/unit/veritas/relation/operation/reverse/directions_spec.rb +1 -1
  227. data/spec/unit/veritas/relation/operation/reverse/each_spec.rb +1 -1
  228. data/spec/unit/veritas/relation/operation/reverse/methods/reverse_spec.rb +2 -2
  229. data/spec/unit/veritas/relation/operation/set/class_methods/new_spec.rb +1 -1
  230. data/spec/unit/veritas/tuple/class_methods/coerce_spec.rb +1 -1
  231. data/spec/unit/veritas/tuple/data_spec.rb +16 -0
  232. data/spec/unit/veritas/tuple/element_reference_spec.rb +1 -1
  233. data/spec/unit/veritas/tuple/eql_spec.rb +5 -5
  234. data/spec/unit/veritas/tuple/equal_value_spec.rb +7 -7
  235. data/spec/unit/veritas/tuple/extend_spec.rb +3 -3
  236. data/spec/unit/veritas/tuple/hash_spec.rb +1 -1
  237. data/spec/unit/veritas/tuple/inspect_spec.rb +2 -2
  238. data/spec/unit/veritas/tuple/join_spec.rb +1 -1
  239. data/spec/unit/veritas/tuple/predicate_spec.rb +44 -0
  240. data/spec/unit/veritas/tuple/project_spec.rb +1 -1
  241. data/spec/unit/veritas/tuple/to_ary_spec.rb +3 -1
  242. data/tasks/metrics/heckle.rake +1 -0
  243. data/veritas.gemspec +28 -14
  244. metadata +31 -17
@@ -15,7 +15,7 @@ describe Algebra::Restriction, '#eql?' do
15
15
  it { should be(true) }
16
16
 
17
17
  it 'is symmetric' do
18
- should == other.eql?(object)
18
+ should eql(other.eql?(object))
19
19
  end
20
20
  end
21
21
 
@@ -25,7 +25,7 @@ describe Algebra::Restriction, '#eql?' do
25
25
  it { should be(true) }
26
26
 
27
27
  it 'is symmetric' do
28
- should == other.eql?(object)
28
+ should eql(other.eql?(object))
29
29
  end
30
30
  end
31
31
 
@@ -35,7 +35,7 @@ describe Algebra::Restriction, '#eql?' do
35
35
  it { should be(false) }
36
36
 
37
37
  it 'is symmetric' do
38
- should == other.eql?(object)
38
+ should eql(other.eql?(object))
39
39
  end
40
40
  end
41
41
 
@@ -47,7 +47,7 @@ describe Algebra::Restriction, '#eql?' do
47
47
  it { should be(false) }
48
48
 
49
49
  it 'is symmetric' do
50
- should == other.eql?(object)
50
+ should eql(other.eql?(object))
51
51
  end
52
52
  end
53
53
 
@@ -59,7 +59,7 @@ describe Algebra::Restriction, '#eql?' do
59
59
  it { should be(false) }
60
60
 
61
61
  it 'is symmetric' do
62
- should == other.eql?(object)
62
+ should eql(other.eql?(object))
63
63
  end
64
64
  end
65
65
  end
@@ -9,7 +9,7 @@ describe Algebra::Restriction::Methods, '#restrict' do
9
9
 
10
10
  subject { object.restrict(&block) }
11
11
 
12
- it { should be_kind_of(Algebra::Restriction) }
12
+ it { should be_instance_of(Algebra::Restriction) }
13
13
 
14
14
  it 'sets the predicate' do
15
15
  subject.predicate.should eql(block.call(object))
@@ -13,7 +13,7 @@ describe Algebra::Summarization, '.new' do
13
13
  context 'with a summarize_per that has a subset of the headers in the operand' do
14
14
  let(:summarize_per) { TABLE_DEE }
15
15
 
16
- it { should be_kind_of(object) }
16
+ it { should be_instance_of(object) }
17
17
  end
18
18
 
19
19
  context 'with a summarize_per that has equivalent headers to the headers in the operand' do
@@ -16,7 +16,7 @@ describe Algebra::Summarization, '#eql?' do
16
16
  it { should be(true) }
17
17
 
18
18
  it 'is symmetric' do
19
- should == other.eql?(object)
19
+ should eql(other.eql?(object))
20
20
  end
21
21
  end
22
22
 
@@ -26,7 +26,7 @@ describe Algebra::Summarization, '#eql?' do
26
26
  it { should be(true) }
27
27
 
28
28
  it 'is symmetric' do
29
- should == other.eql?(object)
29
+ should eql(other.eql?(object))
30
30
  end
31
31
  end
32
32
 
@@ -36,7 +36,7 @@ describe Algebra::Summarization, '#eql?' do
36
36
  it { should be(false) }
37
37
 
38
38
  it 'is symmetric' do
39
- should == other.eql?(object)
39
+ should eql(other.eql?(object))
40
40
  end
41
41
  end
42
42
 
@@ -49,20 +49,20 @@ describe Algebra::Summarization, '#eql?' do
49
49
  it { should be(false) }
50
50
 
51
51
  it 'is symmetric' do
52
- should == other.eql?(object)
52
+ should eql(other.eql?(object))
53
53
  end
54
54
  end
55
55
 
56
56
  context 'with an object having a different summarize_by' do
57
57
  let(:other_operand) { operand }
58
- let(:other_summarize_by) { operand.project([]).order }
58
+ let(:other_summarize_by) { operand.project([]).sort_by {} }
59
59
  let(:other_summarizers) { summarizers }
60
60
  let(:other) { described_class.new(other_operand, other_summarize_by, other_summarizers) }
61
61
 
62
62
  it { should be(false) }
63
63
 
64
64
  it 'is symmetric' do
65
- should == other.eql?(object)
65
+ should eql(other.eql?(object))
66
66
  end
67
67
  end
68
68
 
@@ -75,7 +75,7 @@ describe Algebra::Summarization, '#eql?' do
75
75
  it { should be(false) }
76
76
 
77
77
  it 'is symmetric' do
78
- should == other.eql?(object)
78
+ should eql(other.eql?(object))
79
79
  end
80
80
  end
81
81
  end
@@ -11,7 +11,7 @@ describe Algebra::Summarization, '#header' do
11
11
 
12
12
  it_should_behave_like 'an idempotent method'
13
13
 
14
- it { should be_kind_of(Relation::Header) }
14
+ it { should be_instance_of(Relation::Header) }
15
15
 
16
16
  it { should == [ [ :test, Object ] ] }
17
17
  end
@@ -10,29 +10,39 @@ describe Algebra::Summarization::Methods, '#summarize' do
10
10
  let(:block) { lambda { |r| r.add(*summarizers) } }
11
11
  let(:object) { described_class.new([ [ :id, Integer ], [ :name, String ] ], [ [ 1, 'Dan Kubb' ] ].each) }
12
12
 
13
- context 'when summarizing per a relation' do
13
+ context 'with no arguments' do
14
+ subject { object.summarize(&block) }
15
+
16
+ it { should be_instance_of(Algebra::Summarization) }
17
+
18
+ its(:operand) { should equal(object) }
19
+
20
+ its(:summarize_per) { should equal(TABLE_DEE) }
21
+ end
22
+
23
+ context 'with a relation' do
14
24
  let(:summarize_with) { object.project([]) }
15
25
 
16
- it { should be_kind_of(Algebra::Summarization) }
26
+ it { should be_instance_of(Algebra::Summarization) }
17
27
 
18
28
  its(:operand) { should equal(object) }
19
29
 
20
30
  its(:summarize_per) { should equal(summarize_with) }
21
31
  end
22
32
 
23
- context 'when summarizing by a header' do
24
- let(:summarize_with) { [] }
33
+ context 'with a header' do
34
+ let(:summarize_with) { object.project([]).header }
25
35
 
26
- it { should be_kind_of(Algebra::Summarization) }
36
+ it { should be_instance_of(Algebra::Summarization) }
27
37
 
28
38
  its(:operand) { should equal(object) }
29
39
 
30
40
  its(:summarize_per) { should == object.project(summarize_with) }
31
41
  end
32
42
 
33
- context 'when using a summarized-on attribute in the context' do
34
- let(:summarize_with) { object.project([ :id ]) }
35
- let(:block) { lambda { |r| r.add(:count, r[:id].count) } }
43
+ context 'with a header containing an attribute used in the context block' do
44
+ let(:summarize_with) { object.project([ :id ]) }
45
+ let(:block) { lambda { |r| r.add(:count, r.id.count) } }
36
46
 
37
47
  specify { expect { subject }.to raise_error(NoMethodError) }
38
48
  end
@@ -19,8 +19,8 @@ describe Algebra::Summarization::Summaries, '#summarize_by' do
19
19
  it 'aggregates the value returned by the summarizer' do
20
20
  subject
21
21
  key, value = subject.to_hash.first
22
- key.should == :count
23
- value.should be_kind_of(Algebra::Summarization::Summary)
24
- value.call(tuple).should == 1
22
+ key.should eql(:count)
23
+ value.should be_instance_of(Algebra::Summarization::Summary)
24
+ value.call(tuple).should eql(1)
25
25
  end
26
26
  end
@@ -10,7 +10,7 @@ describe Algebra::Summarization::Summaries, '#to_hash' do
10
10
 
11
11
  it 'matches the expected value' do
12
12
  key, value = subject.first
13
- key.should == :count
14
- value.should be_kind_of(Algebra::Summarization::Summary)
13
+ key.should eql(:count)
14
+ value.should be_instance_of(Algebra::Summarization::Summary)
15
15
  end
16
16
  end
@@ -15,6 +15,6 @@ describe Algebra::Summarization::Summary, '#summarize_by' do
15
15
 
16
16
  it 'aggregates the value returned by the summarizer' do
17
17
  2.times { instance_eval(&self.class.subject) } # bypass subject cache
18
- object.call(projection).should == 2
18
+ object.call(projection).should eql(2)
19
19
  end
20
20
  end
@@ -11,10 +11,10 @@ require 'spec_helper'
11
11
  let(:other) { described_class.new(header, [ [ 2 ] ].each) }
12
12
  let(:object) { described_class.new(header, [ [ 1 ] ].each) }
13
13
 
14
- it { should be_kind_of(Algebra::Union) }
14
+ it { should be_instance_of(Algebra::Union) }
15
15
 
16
16
  it 'behaves the same as Array#|' do
17
- should == (object.to_a | other.to_a)
17
+ should == object.to_a | other.to_a
18
18
  end
19
19
  end
20
20
  end
@@ -36,8 +36,8 @@ describe Aliasable, '#inheritable_alias' do
36
36
 
37
37
  file, line = aliasable.other.first.split(':')[0, 2]
38
38
 
39
- File.expand_path(file).should == File.expand_path('../../../../../lib/veritas/support/aliasable.rb', __FILE__)
40
- line.to_i.should == 23
39
+ File.expand_path(file).should eql(File.expand_path('../../../../../lib/veritas/support/aliasable.rb', __FILE__))
40
+ line.to_i.should eql(23)
41
41
  end
42
42
 
43
43
  it 'sets the file and line number properly' do
@@ -16,7 +16,7 @@ describe Attribute, '.coerce' do
16
16
  context 'when the argument responds to #to_ary' do
17
17
  let(:argument) { [ :id, Integer ] }
18
18
 
19
- it { should be_kind_of(Attribute::Integer) }
19
+ it { should be_instance_of(Attribute::Integer) }
20
20
 
21
21
  its(:name) { should == :id }
22
22
  end
@@ -24,7 +24,7 @@ describe Attribute, '.coerce' do
24
24
  context 'when the argument does not respond to #to_ary, but does respond to #to_sym' do
25
25
  let(:argument) { :id }
26
26
 
27
- it { should be_kind_of(Attribute::Object) }
27
+ it { should be_instance_of(Attribute::Object) }
28
28
 
29
29
  its(:name) { should == :id }
30
30
  end
@@ -50,7 +50,7 @@ describe Attribute::Boolean, '.coerce' do
50
50
  context 'when the argument responds to #to_ary' do
51
51
  let(:argument) { [ :id, Integer ] }
52
52
 
53
- it { should be_kind_of(Attribute::Integer) }
53
+ it { should be_instance_of(Attribute::Integer) }
54
54
 
55
55
  its(:name) { should == :id }
56
56
  end
@@ -58,7 +58,7 @@ describe Attribute::Boolean, '.coerce' do
58
58
  context 'when the argument does not respond to #to_ary, but does respond to #to_sym' do
59
59
  let(:argument) { :id }
60
60
 
61
- it { should be_kind_of(described_class) }
61
+ it { should be_instance_of(described_class) }
62
62
 
63
63
  its(:name) { should == :id }
64
64
  end
@@ -14,14 +14,10 @@ describe Attribute, '.descendants' do
14
14
  end
15
15
 
16
16
  context 'when there are descendants' do
17
- let(:descendant) { Class.new(object) }
18
-
19
- before do
20
- descendant # trigger the class inhertance
21
- end
17
+ let!(:descendant) { Class.new(object) }
22
18
 
23
19
  it_should_behave_like 'an idempotent method'
24
20
 
25
- it { should == [ descendant ] }
21
+ it { should eql([ descendant ]) }
26
22
  end
27
23
  end
@@ -23,7 +23,7 @@ describe Attribute, '.new' do
23
23
  context "when called on the Attribute subclass #{described_class}" do
24
24
  let(:object) { described_class }
25
25
 
26
- it { should be_kind_of(object) }
26
+ it { should be_instance_of(object) }
27
27
  end
28
28
  end
29
29
 
@@ -14,7 +14,7 @@ describe Attribute::Comparable, '#comparable?' do
14
14
  it { should be(true) }
15
15
 
16
16
  it 'is symmetric' do
17
- should == other.comparable?(object)
17
+ should eql(other.comparable?(object))
18
18
  end
19
19
  end
20
20
 
@@ -34,7 +34,7 @@ describe Attribute::Comparable, '#comparable?' do
34
34
  it { should be(true) }
35
35
 
36
36
  it 'is symmetric' do
37
- should == other.comparable?(object)
37
+ should eql(other.comparable?(object))
38
38
  end
39
39
  end
40
40
 
@@ -44,7 +44,7 @@ describe Attribute::Comparable, '#comparable?' do
44
44
  it { should be(true) }
45
45
 
46
46
  it 'is symmetric' do
47
- should == other.comparable?(object)
47
+ should eql(other.comparable?(object))
48
48
  end
49
49
  end
50
50
  end
@@ -15,7 +15,7 @@ describe Attribute, '#eql?' do
15
15
  it { should be(true) }
16
16
 
17
17
  it 'is symmetric' do
18
- should == other.eql?(object)
18
+ should eql(other.eql?(object))
19
19
  end
20
20
  end
21
21
 
@@ -25,7 +25,7 @@ describe Attribute, '#eql?' do
25
25
  it { should be(true) }
26
26
 
27
27
  it 'is symmetric' do
28
- should == other.eql?(object)
28
+ should eql(other.eql?(object))
29
29
  end
30
30
  end
31
31
 
@@ -35,7 +35,7 @@ describe Attribute, '#eql?' do
35
35
  it { should be(false) }
36
36
 
37
37
  it 'is symmetric' do
38
- should == other.eql?(object)
38
+ should eql(other.eql?(object))
39
39
  end
40
40
  end
41
41
 
@@ -46,7 +46,7 @@ describe Attribute, '#eql?' do
46
46
  it { should be(false) }
47
47
 
48
48
  it 'is symmetric' do
49
- should == other.eql?(object)
49
+ should eql(other.eql?(object))
50
50
  end
51
51
  end
52
52
  end
@@ -15,7 +15,7 @@ describe Attribute, '#==' do
15
15
  it { should be(true) }
16
16
 
17
17
  it 'is symmetric' do
18
- should == (other == object)
18
+ should eql(other == object)
19
19
  end
20
20
  end
21
21
 
@@ -25,7 +25,7 @@ describe Attribute, '#==' do
25
25
  it { should be(true) }
26
26
 
27
27
  it 'is symmetric' do
28
- should == (other == object)
28
+ should eql(other == object)
29
29
  end
30
30
  end
31
31
 
@@ -35,7 +35,7 @@ describe Attribute, '#==' do
35
35
  it { should be(true) }
36
36
 
37
37
  it 'is symmetric' do
38
- should == (other == object)
38
+ should eql(other == object)
39
39
  end
40
40
  end
41
41
 
@@ -46,7 +46,7 @@ describe Attribute, '#==' do
46
46
  it { should be(false) }
47
47
 
48
48
  it 'is symmetric' do
49
- should == (other == object)
49
+ should eql(other == object)
50
50
  end
51
51
  end
52
52
  end
@@ -8,7 +8,7 @@ describe Attribute, '#inspect' do
8
8
  let(:described_class) { Attribute::Integer }
9
9
  let(:object) { described_class.new(:id) }
10
10
 
11
- it { should be_kind_of(String) }
11
+ it { should be_instance_of(String) }
12
12
 
13
13
  it { should == '<Attribute::Integer name: id>' }
14
14
  end
@@ -14,7 +14,7 @@ describe Attribute, '#joinable?' do
14
14
  it { should be(true) }
15
15
 
16
16
  it 'is symmetric' do
17
- should == other.joinable?(object)
17
+ should eql(other.joinable?(object))
18
18
  end
19
19
  end
20
20
 
@@ -24,7 +24,7 @@ describe Attribute, '#joinable?' do
24
24
  it { should be(false) }
25
25
 
26
26
  it 'is symmetric' do
27
- should == other.joinable?(object)
27
+ should eql(other.joinable?(object))
28
28
  end
29
29
  end
30
30
 
@@ -34,7 +34,7 @@ describe Attribute, '#joinable?' do
34
34
  it { should be(true) }
35
35
 
36
36
  it 'is symmetric' do
37
- should == other.joinable?(object)
37
+ should eql(other.joinable?(object))
38
38
  end
39
39
  end
40
40
 
@@ -44,7 +44,7 @@ describe Attribute, '#joinable?' do
44
44
  it { should be(true) }
45
45
 
46
46
  it 'is symmetric' do
47
- should == other.joinable?(object)
47
+ should eql(other.joinable?(object))
48
48
  end
49
49
  end
50
50
  end
@@ -14,7 +14,7 @@ describe Attribute::Numeric, '#joinable?' do
14
14
  it { should be(true) }
15
15
 
16
16
  it 'is symmetric' do
17
- should == other.joinable?(object)
17
+ should eql(other.joinable?(object))
18
18
  end
19
19
  end
20
20
 
@@ -24,7 +24,7 @@ describe Attribute::Numeric, '#joinable?' do
24
24
  it { should be(false) }
25
25
 
26
26
  it 'is symmetric' do
27
- should == other.joinable?(object)
27
+ should eql(other.joinable?(object))
28
28
  end
29
29
  end
30
30
 
@@ -34,7 +34,7 @@ describe Attribute::Numeric, '#joinable?' do
34
34
  it { should be(false) }
35
35
 
36
36
  it 'is symmetric' do
37
- should == other.joinable?(object)
37
+ should eql(other.joinable?(object))
38
38
  end
39
39
  end
40
40
  end
@@ -10,7 +10,7 @@ describe Attribute, '#options' do
10
10
  context 'when no options are provided' do
11
11
  let(:object) { described_class.new(:id) }
12
12
 
13
- it { should be_kind_of(Hash) }
13
+ it { should be_instance_of(Hash) }
14
14
 
15
15
  it { should be_empty }
16
16
 
@@ -30,7 +30,7 @@ describe Attribute, '#options' do
30
30
 
31
31
  it { should_not equal(options) }
32
32
 
33
- it { should be_kind_of(Hash) }
33
+ it { should be_instance_of(Hash) }
34
34
 
35
35
  it { should == options }
36
36
 
@@ -9,5 +9,5 @@ describe Attribute::Orderable, '#asc' do
9
9
  let(:described_class) { OrderableSpecs::Object }
10
10
  let(:object) { described_class.new }
11
11
 
12
- it { should be_kind_of(Relation::Operation::Order::Ascending) }
12
+ it { should be_instance_of(Relation::Operation::Order::Ascending) }
13
13
  end
@@ -9,5 +9,5 @@ describe Attribute::Orderable, '#desc' do
9
9
  let(:described_class) { OrderableSpecs::Object }
10
10
  let(:object) { described_class.new }
11
11
 
12
- it { should be_kind_of(Relation::Operation::Order::Descending) }
12
+ it { should be_instance_of(Relation::Operation::Order::Descending) }
13
13
  end
@@ -17,7 +17,7 @@ describe Attribute, '#rename' do
17
17
  context 'when the new name is different' do
18
18
  let(:name) { :other_id }
19
19
 
20
- it { should be_kind_of(described_class) }
20
+ it { should be_instance_of(described_class) }
21
21
 
22
22
  it { should_not equal(object) }
23
23
 
@@ -13,17 +13,27 @@ describe Attribute::String, '#joinable?' do
13
13
  it { should be(true) }
14
14
 
15
15
  it 'is symmetric' do
16
- should == other.joinable?(object)
16
+ should eql(other.joinable?(object))
17
17
  end
18
18
  end
19
19
 
20
- context 'when the attribute types are the same and the lengths are different' do
20
+ context 'when the attribute types are the same and the min_length is different' do
21
21
  let(:other) { described_class.new(:string, :min_length => 1, :max_length => 20) }
22
22
 
23
23
  it { should be(false) }
24
24
 
25
25
  it 'is symmetric' do
26
- should == other.joinable?(object)
26
+ should eql(other.joinable?(object))
27
+ end
28
+ end
29
+
30
+ context 'when the attribute types are the same and the max_length is different' do
31
+ let(:other) { described_class.new(:string, :min_length => 10, :max_length => 30) }
32
+
33
+ it { should be(false) }
34
+
35
+ it 'is symmetric' do
36
+ should eql(other.joinable?(object))
27
37
  end
28
38
  end
29
39
 
@@ -33,7 +43,7 @@ describe Attribute::String, '#joinable?' do
33
43
  it { should be(false) }
34
44
 
35
45
  it 'is symmetric' do
36
- should == other.joinable?(object)
46
+ should eql(other.joinable?(object))
37
47
  end
38
48
  end
39
49
  end
@@ -0,0 +1,29 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Evaluator::Context, '#method_missing' do
6
+ let(:attribute) { Attribute::Integer.new(:id) }
7
+ let(:header) { Relation::Header.new([ attribute ]) }
8
+ let(:object) { described_class.new(header) {} }
9
+
10
+ context 'with a valid attribute' do
11
+ subject { object.id }
12
+
13
+ it { should equal(attribute) }
14
+ end
15
+
16
+ context 'with a valid attribute and extra arguments' do
17
+ subject { object.id(args) }
18
+
19
+ let(:args) { mock('Arguments') }
20
+
21
+ specify { expect { subject }.to raise_error(ArgumentError, 'wrong number of arguments (1 for 0)') }
22
+ end
23
+
24
+ context 'with an unknown attribute' do
25
+ subject { object.unknown }
26
+
27
+ specify { expect { subject }.to raise_error(NoMethodError) }
28
+ end
29
+ end
@@ -0,0 +1,39 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Evaluator::Context, '#respond_to?' do
6
+ subject { object.respond_to?(method) }
7
+
8
+ let(:attribute) { Attribute::Integer.new(:id) }
9
+ let(:header) { Relation::Header.new([ attribute ]) }
10
+ let(:object) { described_class.new(header) {} }
11
+
12
+ context 'when the method is an attribute name and include_private is true' do
13
+ let(:method) { attribute.name }
14
+ let(:include_private) { true }
15
+
16
+ it { should be(true) }
17
+ end
18
+
19
+ context 'when the method is an attribute name and include_private is false' do
20
+ let(:method) { attribute.name }
21
+ let(:include_private) { false }
22
+
23
+ it { should be(true) }
24
+ end
25
+
26
+ context 'when the method is not an attribute name and include_private is true' do
27
+ let(:method) { :unknown }
28
+ let(:include_private) { true }
29
+
30
+ it { should be(false) }
31
+ end
32
+
33
+ context 'when the method is not an attribute name and include_private is false' do
34
+ let(:method) { :unknown }
35
+ let(:include_private) { false }
36
+
37
+ it { should be(false) }
38
+ end
39
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Evaluator::Context, '#send' do
6
+ subject { object.send(method, args, &block) }
7
+
8
+ let(:attribute) { Attribute::Integer.new(:id) }
9
+ let(:header) { Relation::Header.new([ attribute ]) }
10
+ let(:object) { described_class.new(header) {} }
11
+ let(:method) { :test }
12
+ let(:args) { mock('Arguments') }
13
+ let(:block) { proc {} }
14
+
15
+ before do
16
+ def object.test(args, &block)
17
+ return args, block
18
+ end
19
+ end
20
+
21
+ it 'delegates the arguments to the method' do
22
+ subject[0].should equal(args)
23
+ end
24
+
25
+ it 'delegates the block to the method' do
26
+ subject[1].should equal(block)
27
+ end
28
+ end