Sha256: de1e3787485a35de13ace3d605347eeab56b3d19ee8cf4de1ce20004884860b9
Contents?: true
Size: 557 Bytes
Versions: 16
Compression:
Stored size: 557 Bytes
Contents
require_relative 'test_helper' class MachineWithTransactionsTest < BaseTestCase def setup @model = new_model @machine = StateMachines::Machine.new(@model, :use_transactions => true) end def test_should_rollback_transaction_if_false @machine.within_transaction(@model.new) do @model.create false end assert_equal 0, @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
Version data entries
16 entries across 16 versions & 2 rubygems