spec/lib/danica/exponential_spec.rb in danica-2.0.3 vs spec/lib/danica/exponential_spec.rb in danica-2.0.4

- old
+ new

@@ -1,10 +1,11 @@ require 'spec_helper' describe Danica::Exponential do subject { described_class.new(2) } - it_behaves_like 'an object with + operation' + it_behaves_like 'an object that respond to basic_methods' + it_behaves_like 'an object with basic operation' it_behaves_like 'a operator with a single input value', { variable_value: 2, expected_number: Math.exp(2), expected_number_text: Math.exp(2).to_s,