spec/integration/power_spec.rb in danica-2.2.1 vs spec/integration/power_spec.rb in danica-2.3.0
- old
+ new
@@ -1,12 +1,12 @@
require 'spec_helper'
describe 'integration of power' do
- describe 'of sums' do
+ describe 'of additions' do
subject do
- Danica::Power.new(
- Danica::Sum.new(3, 4),
- Danica::Sum.new(5, 6)
+ Danica::Operator::Power.new(
+ Danica::Operator::Addition.new(3, 4),
+ Danica::Operator::Addition.new(5, 6)
)
end
describe '#to_gnu' do
it 'returns the correct string' do