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.4.27 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.4 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.26 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.3 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.25 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.2 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.24 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.1 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.23 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.22 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.0 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.21 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.5.0.beta.1 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.20 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.19 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.18 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.17 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.16 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.15 test/workers/workarea/publish_bulk_action_test.rb
workarea-core-3.4.14 test/workers/workarea/publish_bulk_action_test.rb