spec/support/shared_examples/operator/chained.rb in danica-2.0.4 vs spec/support/shared_examples/operator/chained.rb in danica-2.0.5

- old
+ new

@@ -88,17 +88,17 @@ (0..numeric_variables_index).each do |i| variables[i] = numeric_variables[i] end end - it 'outputs a text format with colapsed numbers' do + it 'outputs a text format of numbers' do expect(subject.public_send(command)).to eq(integer_expected) end - context 'when numeric variables calculated is a float value' do + context 'when numeric variables are a float value' do let(:numeric_variables_index) { 2 } - it 'outputs a text format with colapsed numbers' do + it 'outputs a text format of numbers' do expect(subject.public_send(command)).to eq(float_expected) end end end end