Sha256: 2a396383a40b2e4f3c3788c15b617eb872d363eb19df3dbc88cd6e35fa3086f2

Contents?: true

Size: 1.38 KB

Versions: 124

Compression:

Stored size: 1.38 KB

Contents

require 'helper'

module Arel
  class FakeCrudder < SelectManager
    class FakeEngine
      attr_reader :calls, :connection_pool, :spec, :config

      def initialize
        @calls = []
        @connection_pool = self
        @spec = self
        @config =  { :adapter => 'sqlite3' }
      end

      def connection; self end

      def method_missing name, *args
        @calls << [name, args]
      end
    end

    include Crud

    attr_reader :engine
    attr_accessor :ctx

    def initialize engine = FakeEngine.new
      super
    end
  end

  describe 'crud' do
    describe 'insert' do
      it 'should call insert on the connection' do
        table = Table.new :users
        fc = FakeCrudder.new
        fc.from table
        im = fc.compile_insert [[table[:id], 'foo']]
        assert_instance_of Arel::InsertManager, im
      end
    end

    describe 'update' do
      it 'should call update on the connection' do
        table = Table.new :users
        fc = FakeCrudder.new
        fc.from table
        stmt = fc.compile_update [[table[:id], 'foo']]
        assert_instance_of Arel::UpdateManager, stmt
      end
    end

    describe 'delete' do
      it 'should call delete on the connection' do
        table = Table.new :users
        fc = FakeCrudder.new
        fc.from table
        stmt = fc.compile_delete
        assert_instance_of Arel::DeleteManager, stmt
      end
    end
  end
end

Version data entries

124 entries across 106 versions & 14 rubygems

Version Path
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
challah-1.0.0.beta2 vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
challah-1.0.0.beta vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
arel-4.0.0.beta2 test/test_crud.rb
arel-4.0.0.beta1 test/test_crud.rb
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
challah-0.9.1.beta.3 vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
devise_sociable-0.1.0 vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
challah-0.9.1.beta vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/test_crud.rb
challah-0.9.0 vendor/bundle/gems/arel-3.0.2/test/test_crud.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_crud.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_crud.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_crud.rb
challah-rolls-0.2.0 vendor/bundle/gems/arel-3.0.2/test/test_crud.rb