Sha256: ae12db8845fe110fdbc99815d97172bca4cd5d69bb83c8c1d45d78383daed1c8

Contents?: true

Size: 558 Bytes

Versions: 6

Compression:

Stored size: 558 Bytes

Contents

class ConductorTest < Minitest::Test
  def test_defaults_to_single_thread
    conductor = Orchestra::Conductor.new

    assert_equal 1, conductor.thread_count
  end

  def test_configuring_thread_pool_globally
    Orchestra.configure do |defaults|
      defaults.thread_count = 5
    end

    conductor = Orchestra::Conductor.new

    assert_equal 5, conductor.thread_count
  end

  def test_configuring_thread_pool_on_an_instance
    conductor = Orchestra::Conductor.new

    conductor.thread_count = 5

    assert_equal 5, conductor.thread_count
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ntl-orchestra-0.9.5 test/unit/conductor_test.rb
ntl-orchestra-0.9.4 test/unit/conductor_test.rb
ntl-orchestra-0.9.3 test/unit/conductor_test.rb
ntl-orchestra-0.9.2 test/unit/conductor_test.rb
ntl-orchestra-0.9.1 test/unit/conductor_test.rb
ntl-orchestra-0.9.0 test/unit/conductor_test.rb