Sha256: 0bfdd8b3e28cd9fb5e9d9c77c05afeb2b5163129e1c15a13dd6a44c06ead8753

Contents?: true

Size: 620 Bytes

Versions: 61

Compression:

Stored size: 620 Bytes

Contents

require 'test_helper'

module Elasticsearch
  module Test
    class CatSnapshotsTest < ::Test::Unit::TestCase

      context "Cat: Snapshots" do
        subject { FakeClient.new }

        should "perform correct request" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'GET', method
            assert_equal '_cat/snapshots/foo', url
            assert_equal Hash.new, params
            assert_nil   body
            true
          end.returns(FakeResponse.new)

          subject.cat.snapshots :repository => 'foo'
        end

      end

    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
elasticsearch-api-1.0.16.pre test/unit/cat/snapshots_test.rb