Sha256: f14e5ab55233c8d0296414085c16859abc915a2cb29379381681f90f30a0b772

Contents?: true

Size: 755 Bytes

Versions: 62

Compression:

Stored size: 755 Bytes

Contents

require 'test_helper'

module Workarea
  class PublishBulkActionTest < Workarea::TestCase
    cattr_accessor :raise_error

    class TestAction < BulkAction
      def perform!
        raise 'foo' if PublishBulkActionTest.raise_error
      end
    end

    def test_perform_marks_the_update_completed
      self.class.raise_error = false
      action = TestAction.create!(ids: %w(foo bar))
      PublishBulkAction.new.perform(action.id)
      assert(action.reload.completed?)
    end

    def test_perform_marks_the_update_as_completed_with_error
      self.class.raise_error = true
      action = TestAction.create!(ids: %w(foo bar))
      assert_raise { PublishBulkAction.new.perform(action.id) }
      assert(action.reload.completed?)
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.27 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.26 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.45 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.25 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.23 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.44 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.22 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.43 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.21 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.42 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.20 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.41 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.19 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.40 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.18 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.39 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.17 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.38 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.16 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.37 test/workers/workarea/publish_bulk_action_test.rb