From 1bbbbb79bb30febfb428d3eefc867be4e5261e27 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Thu, 12 Jun 2014 16:25:22 -0700 Subject: [PATCH] (maint) Remove duplicate test --- spec/unit/pops/types/type_calculator_spec.rb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/spec/unit/pops/types/type_calculator_spec.rb b/spec/unit/pops/types/type_calculator_spec.rb index 6f1d725317f..37947578ffc 100644 --- a/spec/unit/pops/types/type_calculator_spec.rb +++ b/spec/unit/pops/types/type_calculator_spec.rb @@ -814,15 +814,6 @@ class Foo calculator.assignable?(tuple2, tuple1).should == false end - it 'accepts an empty tuple as assignable to a tuple with a min size of 0' do - tuple1 = tuple_t(Object) - factory.constrain_size(tuple1, 0, :default) - tuple2 = tuple_t() - - calculator.assignable?(tuple1, tuple2).should == true - calculator.assignable?(tuple2, tuple1).should == false - end - it 'should accept matching tuples' do tuple1 = tuple_t(1,2) tuple2 = tuple_t(Integer,Integer)