Sha256: 280b55be01fe4a19ed34d9623bb97e46efb532da2438a68f5b3a0905232a56c5
Contents?: true
Size: 609 Bytes
Versions: 61
Compression:
Stored size: 609 Bytes
Contents
# encoding: UTF-8 require 'test_helper' module Elasticsearch module Test class APITest < ::Test::Unit::TestCase context "The API module" do should "access the settings" do assert_not_nil Elasticsearch::API.settings end should "allow to set settings" do assert_nothing_raised { Elasticsearch::API.settings[:foo] = 'bar' } assert_equal 'bar', Elasticsearch::API.settings[:foo] end should "have default serializer" do assert_equal MultiJson, Elasticsearch::API.serializer 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/api_test.rb |