File: machine_without_transactions_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: ruby: 1,922; makefile: 5
file content (26 lines) | stat: -rw-r--r-- 565 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require_relative 'test_helper'

class MachineWithoutTransactionsTest < BaseTestCase
  def setup
    @model = new_model
    @machine = StateMachines::Machine.new(@model, :use_transactions => false)
  end

  def test_should_not_rollback_transaction_if_false
    @machine.within_transaction(@model.new) do
      @model.create
      false
    end

    assert_equal 1, @model.count
  end

  def test_should_not_rollback_transaction_if_true
    @machine.within_transaction(@model.new) do
      @model.create
      true
    end

    assert_equal 1, @model.count
  end
end