Sha256: 8528f5ff60ee61985b7215c968a8fc567a3b15cdff8f9d82bf019c584da44364

Contents?: true

Size: 1015 Bytes

Versions: 6

Compression:

Stored size: 1015 Bytes

Contents

require File.dirname(__FILE__) + '/test_helper'
require 'clevic/table_model.rb'

# need to set up a test DB, and test data for this
class TestTableModel < Test::Unit::TestCase
  def setup
    @table_model = Clevic::TableModel.new( )
  end
  
  def teardown
  end
  
  should "be an empty shell" do
    assert true
  end
  
  should_eventually 'not have new record on empty' do
    # without auto_new
    (0...Passenger.count).each do |i|
      @table_model.delete_at 0
      @table_model.delete_at 0
      @table_model.delete_at 0
    end
    assert_equal 0, @table_model.size
  end
  
  should_eventually 'have new record on empty' do
    #with auto_new
    @table_model = @table_model.renew( :auto_new => true )
    assert !@table_model.options.has_key?( :auto_new ), "CacheTable should not have :auto_new in options"
    (0...Passenger.count).each do |i|
      @table_model.delete_at 0
      @table_model.delete_at 0
      @table_model.delete_at 0
    end
    
    assert_equal 1, @table_model.size
  end
  
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
clevic-0.13.0.b9 test/test_table_model.rb
clevic-0.13.0.b6 test/test_table_model.rb
clevic-0.13.0.b5 test/test_table_model.rb
clevic-0.13.0.b3 test/test_table_model.rb
clevic-0.13.0.b2 test/test_table_model.rb
clevic-0.13.0.b1 test/test_table_model.rb