Sha256: b92ed80c80b3e53e83d0cf6c9416417eaa225f1d715f1606abc1fdb030b4f6fb

Contents?: true

Size: 793 Bytes

Versions: 21

Compression:

Stored size: 793 Bytes

Contents

require 'test_helper'

class CassandraObject::InspectTest < CassandraObject::TestCase
  test 'attribute_for_inspect' do
    object = temp_object do
      string :long_string
      time :the_time
      integer :other
    end

    assert_equal "#{'x' * 51}...".inspect, object.new.attribute_for_inspect('x' * 100)
    assert_equal "2012-02-14 12:01:02".inspect, object.new.attribute_for_inspect(Time.new(2012, 02, 14, 12, 01, 02))
    assert_equal "\"foo\"", object.new.attribute_for_inspect('foo')
  end

  test 'inspect' do
    object = temp_object do
      string :description
      integer :price
    end.new(description: "yeah buddy", price: nil)

    assert_match(/id/, object.inspect)
    assert_match(/description/, object.inspect)
    assert_no_match(/price/, object.inspect)
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
extendi-cassandra_object-1.0.0 test/unit/inspect_test.rb