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
@@ -5,14 +5,14 @@ require 'spec_helper'
5
5
  describe Relation, '#materialize' do
6
6
  subject { object.materialize }
7
7
 
8
- let(:header) { Relation::Header.new([ [ :id, Integer ] ]) }
9
- let(:object) { described_class.new(header, [ [ 1 ] ].each).order }
8
+ let(:header) { Relation::Header.new([ [ :id, Integer ] ]) }
9
+ let(:object) { described_class.new(header, [ [ 1 ] ].each).sort_by { |r| r.id } }
10
10
 
11
11
  before do
12
12
  object.should be_kind_of(described_class)
13
13
  end
14
14
 
15
- it { should be_kind_of(Relation::Materialized) }
15
+ it { should be_instance_of(Relation::Materialized) }
16
16
 
17
17
  its(:header) { should equal(header) }
18
18
 
@@ -12,7 +12,7 @@ describe Relation::Materialized, '.new' do
12
12
 
13
13
  let(:directions) { [ header[:id] ] }
14
14
 
15
- it { should be_kind_of(object) }
15
+ it { should be_instance_of(object) }
16
16
 
17
17
  its(:header) { should equal(header) }
18
18
 
@@ -24,7 +24,7 @@ describe Relation::Materialized, '.new' do
24
24
  context 'with no directions' do
25
25
  subject { object.new(header, tuples) }
26
26
 
27
- it { should be_kind_of(object) }
27
+ it { should be_instance_of(object) }
28
28
 
29
29
  its(:header) { should equal(header) }
30
30
 
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Relation::Materialized, '#materialized?' do
6
+ subject { object.materialized? }
7
+
8
+ let(:object) { described_class.new([ [ :id, Integer ] ], [ [ 1 ] ]) }
9
+
10
+ before do
11
+ object.should be_instance_of(described_class)
12
+ end
13
+
14
+ it { should be(true) }
15
+ end
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Relation, '#materialized?' do
6
+ subject { object.materialized? }
7
+
8
+ let(:object) { described_class.new([ [ :id, Integer ] ], [].each) }
9
+
10
+ before do
11
+ object.should be_instance_of(described_class)
12
+ end
13
+
14
+ it { should be(false) }
15
+ end
@@ -11,21 +11,21 @@ require File.expand_path('../../fixtures/classes', __FILE__)
11
11
  let(:object) { BinaryRelationOperationSpecs::Object }
12
12
 
13
13
  context 'with left and right ordered' do
14
- let(:left) { original_left.order { |r| r[:id] } }
15
- let(:right) { original_right.order { |r| r[:name] } }
14
+ let(:left) { original_left.sort_by { |r| r.id } }
15
+ let(:right) { original_right.sort_by { |r| r.name } }
16
16
 
17
- it { should be_kind_of(object) }
17
+ it { should be_instance_of(object) }
18
18
  end
19
19
 
20
20
  context 'with left and right unordered' do
21
21
  let(:left) { original_left }
22
22
  let(:right) { original_right }
23
23
 
24
- it { should be_kind_of(object) }
24
+ it { should be_instance_of(object) }
25
25
  end
26
26
 
27
27
  context 'with left ordered, and right unordered' do
28
- let(:left) { original_left.order { |r| r[:id] } }
28
+ let(:left) { original_left.sort_by { |r| r.id } }
29
29
  let(:right) { original_right }
30
30
 
31
31
  specify { expect { subject }.to raise_error(RelationMismatchError, 'both relations must be ordered or neither may be ordered') }
@@ -33,7 +33,7 @@ require File.expand_path('../../fixtures/classes', __FILE__)
33
33
 
34
34
  context 'with right ordered, and left unordered' do
35
35
  let(:left) { original_left }
36
- let(:right) { original_right.order { |r| r[:name] } }
36
+ let(:right) { original_right.sort_by { |r| r.name } }
37
37
 
38
38
  specify { expect { subject }.to raise_error(RelationMismatchError, 'both relations must be ordered or neither may be ordered') }
39
39
  end
@@ -13,7 +13,7 @@ describe Relation::Operation::Binary, '#header' do
13
13
 
14
14
  it_should_behave_like 'an idempotent method'
15
15
 
16
- it { should be_kind_of(Relation::Header) }
16
+ it { should be_instance_of(Relation::Header) }
17
17
 
18
18
  it { should == [ [ :id, Integer ], [ :name, String ] ] }
19
19
  end
@@ -13,7 +13,7 @@ describe Relation::Operation::Combination, '#header' do
13
13
 
14
14
  it_should_behave_like 'an idempotent method'
15
15
 
16
- it { should be_kind_of(Relation::Header) }
16
+ it { should be_instance_of(Relation::Header) }
17
17
 
18
18
  it 'unions the headers' do
19
19
  should == [ [ :id, Integer ], [ :name, String ] ]
@@ -9,17 +9,17 @@ describe Relation::Operation::Limit, '.new' do
9
9
  let(:object) { described_class }
10
10
 
11
11
  context 'with an ordered relation' do
12
- let(:relation) { original_relation.order { |r| r[:id] } }
12
+ let(:relation) { original_relation.sort_by { |r| r.id } }
13
13
  let(:limit) { 1 }
14
14
 
15
- it { should be_kind_of(object) }
15
+ it { should be_instance_of(object) }
16
16
  end
17
17
 
18
18
  context 'with an ordered relation having an empty header' do
19
- let(:relation) { original_relation.order { |r| r[:id] }.project([]) }
19
+ let(:relation) { original_relation.sort_by { |r| r.id }.project([]) }
20
20
  let(:limit) { 1 }
21
21
 
22
- it { should be_kind_of(object) }
22
+ it { should be_instance_of(object) }
23
23
  end
24
24
 
25
25
  context 'without an ordered relation' do
@@ -30,9 +30,16 @@ describe Relation::Operation::Limit, '.new' do
30
30
  end
31
31
 
32
32
  context 'with an limit less than 0' do
33
- let(:relation) { original_relation.order { |r| r[:id] } }
33
+ let(:relation) { original_relation.sort_by { |r| r.id } }
34
34
  let(:limit) { -1 }
35
35
 
36
36
  specify { expect { subject }.to raise_error(InvalidLimitError, 'limit must be greater than or equal to 0, but was -1') }
37
37
  end
38
+
39
+ context 'with a nil limit' do
40
+ let(:relation) { original_relation.sort_by { |r| r.id } }
41
+ let(:limit) { nil }
42
+
43
+ specify { expect { subject }.to raise_error(InvalidLimitError, 'limit must be greater than or equal to 0, but was nil') }
44
+ end
38
45
  end
@@ -7,7 +7,7 @@ describe Relation::Operation::Limit, '#directions' do
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [].each) }
9
9
  let(:object) { described_class.new(ordered, 1) }
10
- let(:ordered) { relation.order }
10
+ let(:ordered) { relation.sort_by { |r| r.id } }
11
11
 
12
12
  it_should_behave_like 'an idempotent method'
13
13
 
@@ -6,7 +6,7 @@ describe Relation::Operation::Limit, '#each' do
6
6
  subject { object.each { |tuple| yields << tuple } }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:order) { relation.order }
9
+ let(:order) { relation.sort_by { |r| r.id } }
10
10
  let(:object) { described_class.new(order, 1) }
11
11
  let(:yields) { [] }
12
12
 
@@ -5,9 +5,9 @@ require 'spec_helper'
5
5
  describe Relation::Operation::Limit, '#eql?' do
6
6
  subject { object.eql?(other) }
7
7
 
8
- let(:operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]).order }
9
- let(:limit) { 1 }
10
- let(:object) { described_class.new(operand, limit) }
8
+ let(:operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]).sort_by { |r| r.id } }
9
+ let(:limit) { 1 }
10
+ let(:object) { described_class.new(operand, limit) }
11
11
 
12
12
  context 'with the same object' do
13
13
  let(:other) { object }
@@ -15,7 +15,7 @@ describe Relation::Operation::Limit, '#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 Relation::Operation::Limit, '#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,19 +35,19 @@ describe Relation::Operation::Limit, '#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
 
42
42
  context 'with an object having a different operand' do
43
- let(:other_operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ]).order }
44
- let(:other_limit) { limit }
45
- let(:other) { described_class.new(other_operand, other_limit) }
43
+ let(:other_operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ]).sort_by { |r| r.id } }
44
+ let(:other_limit) { limit }
45
+ let(:other) { described_class.new(other_operand, other_limit) }
46
46
 
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 Relation::Operation::Limit, '#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
@@ -6,7 +6,7 @@ describe Relation::Operation::Limit, '#hash' do
6
6
  subject { object.hash }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:operand) { relation.order }
9
+ let(:operand) { relation.sort_by { |r| r.id } }
10
10
  let(:limit) { 1 }
11
11
  let(:object) { described_class.new(operand, limit) }
12
12
 
@@ -6,7 +6,7 @@ describe Relation::Operation::Limit, '#limit' do
6
6
  subject { object.limit }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:order) { relation.order }
9
+ let(:order) { relation.sort_by { |r| r.id } }
10
10
  let(:limit) { 1 }
11
11
  let(:object) { described_class.new(order, limit) }
12
12
 
@@ -5,12 +5,12 @@ require 'spec_helper'
5
5
  describe Relation::Operation::Limit::Methods, '#first' do
6
6
  let(:described_class) { Relation }
7
7
  let(:relation) { described_class.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ].each) }
8
- let(:object) { relation.order }
8
+ let(:object) { relation.sort_by { |r| r.id } }
9
9
 
10
10
  context 'with no arguments' do
11
11
  subject { object.first }
12
12
 
13
- it { should be_kind_of(Relation::Operation::Limit) }
13
+ it { should be_instance_of(Relation::Operation::Limit) }
14
14
 
15
15
  its(:limit) { should == 1 }
16
16
 
@@ -28,7 +28,7 @@ describe Relation::Operation::Limit::Methods, '#first' do
28
28
 
29
29
  let(:limit) { 2 }
30
30
 
31
- it { should be_kind_of(Relation::Operation::Limit) }
31
+ it { should be_instance_of(Relation::Operation::Limit) }
32
32
 
33
33
  its(:limit) { should == limit }
34
34
 
@@ -5,12 +5,12 @@ require 'spec_helper'
5
5
  describe Relation::Operation::Limit::Methods, '#last' do
6
6
  let(:described_class) { Relation }
7
7
  let(:relation) { described_class.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ].each) }
8
- let(:object) { relation.order }
8
+ let(:object) { relation.sort_by { |r| r.id } }
9
9
 
10
10
  context 'with no arguments' do
11
11
  subject { object.last }
12
12
 
13
- it { should be_kind_of(Relation::Operation::Reverse) }
13
+ it { should be_instance_of(Relation::Operation::Reverse) }
14
14
 
15
15
  it 'returns the expected tuples' do
16
16
  should == [ [ 3 ] ]
@@ -26,7 +26,7 @@ describe Relation::Operation::Limit::Methods, '#last' do
26
26
 
27
27
  let(:limit) { 2 }
28
28
 
29
- it { should be_kind_of(Relation::Operation::Reverse) }
29
+ it { should be_instance_of(Relation::Operation::Reverse) }
30
30
 
31
31
  it 'returns the expected tuples' do
32
32
  should == [ [ 2 ], [ 3 ] ]
@@ -8,9 +8,9 @@ describe Relation::Operation::Limit::Methods, '#take' do
8
8
  let(:described_class) { Relation }
9
9
  let(:limit) { 1 }
10
10
  let(:relation) { described_class.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ].each) }
11
- let(:object) { relation.order }
11
+ let(:object) { relation.sort_by { |r| r.id } }
12
12
 
13
- it { should be_kind_of(Relation::Operation::Limit) }
13
+ it { should be_instance_of(Relation::Operation::Limit) }
14
14
 
15
15
  its(:limit) { should == limit }
16
16
 
@@ -9,17 +9,17 @@ describe Relation::Operation::Offset, '.new' do
9
9
  let(:object) { described_class }
10
10
 
11
11
  context 'with an ordered relation' do
12
- let(:relation) { original_relation.order { |r| r[:id] } }
12
+ let(:relation) { original_relation.sort_by { |r| r.id } }
13
13
  let(:offset) { 1 }
14
14
 
15
- it { should be_kind_of(object) }
15
+ it { should be_instance_of(object) }
16
16
  end
17
17
 
18
18
  context 'with an ordered relation having an empty header' do
19
- let(:relation) { original_relation.order { |r| r[:id] }.project([]) }
19
+ let(:relation) { original_relation.sort_by { |r| r.id }.project([]) }
20
20
  let(:offset) { 1 }
21
21
 
22
- it { should be_kind_of(object) }
22
+ it { should be_instance_of(object) }
23
23
  end
24
24
 
25
25
  context 'without an ordered relation' do
@@ -30,9 +30,16 @@ describe Relation::Operation::Offset, '.new' do
30
30
  end
31
31
 
32
32
  context 'with an offset less than 0' do
33
- let(:relation) { original_relation.order { |r| r[:id] } }
33
+ let(:relation) { original_relation.sort_by { |r| r.id } }
34
34
  let(:offset) { -1 }
35
35
 
36
36
  specify { expect { subject }.to raise_error(InvalidOffsetError, 'offset must be greater than or equal to 0, but was -1') }
37
37
  end
38
+
39
+ context 'with a nil offset' do
40
+ let(:relation) { original_relation.sort_by { |r| r.id } }
41
+ let(:offset) { nil }
42
+
43
+ specify { expect { subject }.to raise_error(InvalidOffsetError, 'offset must be greater than or equal to 0, but was nil') }
44
+ end
38
45
  end
@@ -7,7 +7,7 @@ describe Relation::Operation::Offset, '#directions' do
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [].each) }
9
9
  let(:object) { described_class.new(ordered, 0) }
10
- let(:ordered) { relation.order }
10
+ let(:ordered) { relation.sort_by { |r| r.id } }
11
11
 
12
12
  it_should_behave_like 'an idempotent method'
13
13
 
@@ -6,7 +6,7 @@ describe Relation::Operation::Offset, '#each' do
6
6
  subject { object.each { |tuple| yields << tuple } }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:order) { relation.order }
9
+ let(:order) { relation.sort_by { |r| r.id } }
10
10
  let(:object) { described_class.new(order, 1) }
11
11
  let(:yields) { [] }
12
12
 
@@ -5,9 +5,9 @@ require 'spec_helper'
5
5
  describe Relation::Operation::Offset, '#eql?' do
6
6
  subject { object.eql?(other) }
7
7
 
8
- let(:operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]).order }
9
- let(:offset) { 1 }
10
- let(:object) { described_class.new(operand, offset) }
8
+ let(:operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]).sort_by { |r| r.id } }
9
+ let(:offset) { 1 }
10
+ let(:object) { described_class.new(operand, offset) }
11
11
 
12
12
  context 'with the same object' do
13
13
  let(:other) { object }
@@ -15,7 +15,7 @@ describe Relation::Operation::Offset, '#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 Relation::Operation::Offset, '#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,19 +35,19 @@ describe Relation::Operation::Offset, '#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
 
42
42
  context 'with an object having a different operand' do
43
- let(:other_operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ]).order }
44
- let(:other_offset) { offset }
45
- let(:other) { described_class.new(other_operand, other_offset) }
43
+ let(:other_operand) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ]).sort_by { |r| r.id } }
44
+ let(:other_offset) { offset }
45
+ let(:other) { described_class.new(other_operand, other_offset) }
46
46
 
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 Relation::Operation::Offset, '#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
@@ -6,7 +6,7 @@ describe Relation::Operation::Offset, '#hash' do
6
6
  subject { object.hash }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:operand) { relation.order }
9
+ let(:operand) { relation.sort_by { |r| r.id } }
10
10
  let(:offset) { 1 }
11
11
  let(:object) { described_class.new(operand, offset) }
12
12
 
@@ -8,9 +8,9 @@ describe Relation::Operation::Offset::Methods, '#drop' do
8
8
  let(:described_class) { Relation }
9
9
  let(:offset) { 1 }
10
10
  let(:relation) { described_class.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ] ].each) }
11
- let(:object) { relation.order }
11
+ let(:object) { relation.sort_by { |r| r.id } }
12
12
 
13
- it { should be_kind_of(Relation::Operation::Offset) }
13
+ it { should be_instance_of(Relation::Operation::Offset) }
14
14
 
15
15
  its(:offset) { should == offset }
16
16
 
@@ -6,7 +6,7 @@ describe Relation::Operation::Offset, '#offset' do
6
6
  subject { object.offset }
7
7
 
8
8
  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
9
- let(:order) { relation.order }
9
+ let(:order) { relation.sort_by { |r| r.id } }
10
10
  let(:offset) { 1 }
11
11
  let(:object) { described_class.new(order, offset) }
12
12
 
@@ -8,7 +8,7 @@ describe Relation::Operation::Order::Ascending, '#reverse' do
8
8
  let(:attribute) { Attribute::Integer.new(:id) }
9
9
  let(:object) { described_class.new(attribute) }
10
10
 
11
- it { should be_kind_of(Relation::Operation::Order::Descending) }
11
+ it { should be_instance_of(Relation::Operation::Order::Descending) }
12
12
 
13
13
  its(:attribute) { should equal(attribute) }
14
14
  end
@@ -13,7 +13,7 @@ describe Relation::Operation::Order, '.new' do
13
13
  context 'with all attributes specified in the directions' do
14
14
  let(:directions) { [ relation[:id], relation[:name] ] }
15
15
 
16
- it { should be_kind_of(object) }
16
+ it { should be_instance_of(object) }
17
17
 
18
18
  its(:operand) { should equal(relation) }
19
19
 
@@ -23,15 +23,11 @@ describe Relation::Operation::Order, '.new' do
23
23
  context 'without no attributes specified in the directions' do
24
24
  let(:directions) { [] }
25
25
 
26
- it { should be_kind_of(object) }
27
-
28
- its(:operand) { should equal(relation) }
29
-
30
- its(:directions) { should == [ relation[:id].asc, relation[:name].asc ] }
26
+ specify { expect { subject }.to raise_error(InvalidDirectionsError, 'directions must include every attribute in the header') }
31
27
  end
32
28
 
33
29
  context 'without all attributes specified in the directions' do
34
- let(:directions) { [ :id ] }
30
+ let(:directions) { [ relation[:id] ] }
35
31
 
36
32
  specify { expect { subject }.to raise_error(InvalidDirectionsError, 'directions must include every attribute in the header') }
37
33
  end
@@ -8,7 +8,7 @@ describe Relation::Operation::Order::Descending, '#reverse' do
8
8
  let(:attribute) { Attribute::Integer.new(:id) }
9
9
  let(:object) { described_class.new(attribute) }
10
10
 
11
- it { should be_kind_of(Relation::Operation::Order::Ascending) }
11
+ it { should be_instance_of(Relation::Operation::Order::Ascending) }
12
12
 
13
13
  its(:attribute) { should equal(attribute) }
14
14
  end
@@ -17,7 +17,7 @@ describe Relation::Operation::Order::Direction, '.coerce' do
17
17
  context 'when the argument is an Attribute' do
18
18
  let(:argument) { attribute }
19
19
 
20
- it { should be_kind_of(object) }
20
+ it { should be_instance_of(object) }
21
21
 
22
22
  its(:attribute) { should equal(attribute) }
23
23
  end
@@ -16,7 +16,7 @@ require 'spec_helper'
16
16
  it { should be(true) }
17
17
 
18
18
  it 'is symmetric' do
19
- should == other.send(method, object)
19
+ should eql(other.send(method, object))
20
20
  end
21
21
  end
22
22
 
@@ -26,7 +26,7 @@ require 'spec_helper'
26
26
  it { should be(true) }
27
27
 
28
28
  it 'is symmetric' do
29
- should == other.send(method, object)
29
+ should eql(other.send(method, object))
30
30
  end
31
31
  end
32
32
 
@@ -36,7 +36,7 @@ require 'spec_helper'
36
36
  it { should be(false) }
37
37
 
38
38
  it 'is symmetric' do
39
- should == other.send(method, object)
39
+ should eql(other.send(method, object))
40
40
  end
41
41
  end
42
42
 
@@ -47,7 +47,7 @@ require 'spec_helper'
47
47
  it { should be(false) }
48
48
 
49
49
  it 'is symmetric' do
50
- should == other.send(method, object)
50
+ should eql(other.send(method, object))
51
51
  end
52
52
  end
53
53
  end
@@ -13,7 +13,7 @@ describe Relation::Operation::Order::Direction, '#rename' do
13
13
  context 'with aliases matching the attribute' do
14
14
  let(:aliases) { Algebra::Rename::Aliases.coerce(header, :id => :other_id) }
15
15
 
16
- it { should be_kind_of(described_class) }
16
+ it { should be_instance_of(described_class) }
17
17
 
18
18
  its(:attribute) { should == attribute.rename(:other_id) }
19
19
  end
@@ -8,7 +8,7 @@ describe Relation::Operation::Order::DirectionSet, '#attributes' do
8
8
  let(:attribute) { Attribute::Integer.new(:id) }
9
9
  let(:object) { described_class.new([ attribute ]) }
10
10
 
11
- it { should be_kind_of(Array) }
11
+ it { should be_instance_of(Array) }
12
12
 
13
13
  it { should == [ attribute ] }
14
14
  end
@@ -5,9 +5,9 @@ require 'spec_helper'
5
5
  describe Relation::Operation::Order::DirectionSet, '.coerce' do
6
6
  subject { object.coerce(argument) }
7
7
 
8
- let(:directions) { [ :id ] }
9
- let(:object) { described_class }
10
- let(:direction_set) { object.new(directions) }
8
+ let(:directions) { [ Attribute::Integer.new(:id) ] }
9
+ let(:object) { described_class }
10
+ let(:direction_set) { object.new(directions) }
11
11
 
12
12
  context 'when the argument is a DirectionSet' do
13
13
  let(:argument) { direction_set }
@@ -18,7 +18,7 @@ describe Relation::Operation::Order::DirectionSet, '.coerce' do
18
18
  context 'when the argument responds to #to_ary' do
19
19
  let(:argument) { directions }
20
20
 
21
- it { should be_kind_of(object) }
21
+ it { should be_instance_of(object) }
22
22
 
23
23
  it { should == direction_set }
24
24
  end