Sha256: 45d3c7955fcedc75e760eeb1c5657eec572cad1b34f559f4b7f0a2691d22233c
Contents?: true
Size: 662 Bytes
Versions: 70
Compression:
Stored size: 662 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class SnapshotVerifyRepositoryTest < ::Test::Unit::TestCase context "Snapshot: Verify repository" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'POST', method assert_equal '_snapshot/foo/_verify', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.snapshot.verify_repository :repository => 'foo' end end end end end
Version data entries
70 entries across 70 versions & 6 rubygems