Sha256: 7a4cfb9d59c8a0c1984163931cc0cb5ad918226f64e08c4bd2a9970ba747b16b

Contents?: true

Size: 244 Bytes

Versions: 24

Compression:

Stored size: 244 Bytes

Contents

require 'spec_helper'

describe ActiveRemote::Base do
  describe "#initialize" do
    it "runs callbacks" do
      expect_any_instance_of(described_class).to receive(:run_callbacks).with(:initialize)
      described_class.new
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
active_remote-2.3.2 spec/lib/active_remote/base_spec.rb
active_remote-2.3.1 spec/lib/active_remote/base_spec.rb
active_remote-2.3.0 spec/lib/active_remote/base_spec.rb
active_remote-2.2.0 spec/lib/active_remote/base_spec.rb