spec/lib/query/combinations/base_spec.rb in picky-2.0.0.pre2 vs spec/lib/query/combinations/base_spec.rb in picky-2.0.0.pre3
- old
+ new
@@ -8,18 +8,9 @@
@combinations_ary = stub :combinations_ary
@combinations = described_class.new @combinations_ary
end
- describe "pack_into_allocation" do
- it "return an Allocation" do
- @combinations.pack_into_allocation(:some_result_identifier).should be_kind_of(Internals::Query::Allocation)
- end
- it "returns an Allocation with specific result_identifier" do
- @combinations.pack_into_allocation(:some_result_identifier).result_identifier.should == :some_result_identifier
- end
- end
-
describe "to_result" do
before(:each) do
@combination1 = stub :combination1, :to_result => :result1
@combination2 = stub :combination2, :to_result => :result2
\ No newline at end of file