Sha256: 9fe56de3dbd2683a4ee706ac42bef56849cad7cc983897fe423ffc41ae08e74c

Contents?: true

Size: 379 Bytes

Versions: 1

Compression:

Stored size: 379 Bytes

Contents

# encoding: UTF-8

require 'spec_helper'

describe Esearch::Mixin::Index, '#status' do
  subject { object.status }

  let(:object) { class_under_test.new(connection) }

  let(:class_under_test) do
    Class.new do
      include Concord.new(:connection), Esearch::Mixin::Index
    end
  end

  let(:expected_arguments) { [] }
  expect_to_run_command(Esearch::Command::Status)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
esearch-0.2.2 spec/unit/esearch/mixin/index/status_spec.rb