Sha256: a21cef529f52b31378326754b78a98fcda130f8e60623a8b2f763b38d967cbd4

Contents?: true

Size: 322 Bytes

Versions: 2

Compression:

Stored size: 322 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Optimizer, '#operation' do
  subject { object.operation }

  let(:described_class) { Class.new(Optimizer)           }
  let(:operation)       { double('Operation')            }
  let(:object)          { described_class.new(operation) }

  it { should be(operation) }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
axiom-optimizer-0.2.0 spec/unit/axiom/optimizer/operation_spec.rb
axiom-optimizer-0.1.1 spec/unit/axiom/optimizer/operation_spec.rb