Sha256: 8b197a12ff770d671f162c2ff98b4ff01f7de136ee104623f93dcd2b2b61bbdc
Contents?: true
Size: 587 Bytes
Versions: 90
Compression:
Stored size: 587 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class ClientTest < ::Test::Unit::TestCase context "API Client" do class MyDummyClient include Elasticsearch::API end subject { MyDummyClient.new } should "have the cluster namespace" do assert_respond_to subject, :cluster end should "have the indices namespace" do assert_respond_to subject, :indices end should "have API methods" do assert_respond_to subject, :bulk end end end end end
Version data entries
90 entries across 90 versions & 6 rubygems