Sha256: 0a460f3640377985b05d99afd9cf64b1b5f7e06eece315ab3c80c31beded1de1

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

require File.expand_path(File.dirname(__FILE__))+'/../../test_helper'

class CassandraStoreConfigTest < Minitest::Test
  context "cassandra" do
    setup do
      Socialization.instance_eval {
        @cassandra = nil
        @cas_keyspace = nil
        @cassandra_session = nil
      }
    end

    should "return a new cassandra object when none were specified" do
      assert_instance_of Cassandra::Session, Socialization.cassandra_session
    end

    #should "always return the same Cassandra object when none were specified" do
    #  cassandra_session = Socialization.cassandra_session
    #  assert_same cassandra_session, Socialization.cassandra_session
    #end

    # should "be able to set and get a cassandra instance" do
    #   cluster = Cassandra.cluster
    #   Socialization.cassandra = cluster
    #   Socialization.keyspace = 'system'
    #   session  = cluster.connect('system')
    #   assert_same session, Socialization.cassandra_session
    # end

    #should "always return the same Redis object when it was specified" do
    #  redis = Redis.new
    #  Socialization.redis = redis
    #  assert_same redis, Socialization.redis
    #end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
socialization-cassandra-0.0.7.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.6.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.5.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.4.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.3.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.2.pre.alpha test/stores/cassandra/config_test.rb
socialization-cassandra-0.0.1.pre.alpha test/stores/cassandra/config_test.rb