aboutsummaryrefslogblamecommitdiffstats
path: root/spec/arel/crud_spec.rb
blob: cc58b8dbce760ac754badc40b95506249e99d78c (plain) (tree)
















































                                                  











                                                  

     
module Arel
  class FakeCrudder < SelectManager
    class FakeEngine
      attr_reader :calls

      def initialize
        @calls = []
      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.insert [[table[:id], 'foo']]
        fc.engine.calls.find { |method, _|
          method == :insert
        }.should_not be_nil
      end
    end

    describe 'update' do
      it 'should call update on the connection' do
        table = Table.new :users
        fc = FakeCrudder.new
        fc.from table
        fc.update [[table[:id], 'foo']]
        fc.engine.calls.find { |method, _|
          method == :update
        }.should_not be_nil
      end
    end

    describe 'delete' do
      it 'should call delete on the connection' do
        table = Table.new :users
        fc = FakeCrudder.new
        fc.from table
        fc.delete
        fc.engine.calls.find { |method, _|
          method == :delete
        }.should_not be_nil
      end
    end
  end
end