Sha256: 2a34dc75c9b323f75c68acb3ad7bf3ddb9e2e0aa98e6e4cf01bed5ee3858f1d3

Contents?: true

Size: 535 Bytes

Versions: 7

Compression:

Stored size: 535 Bytes

Contents

require "service/shared_service_tests"

class ActiveStorage::Service::ConfiguratorTest < ActiveSupport::TestCase
  test "builds correct service instance based on service name" do
    service = ActiveStorage::Service::Configurator.build(:foo, foo: { service: "Disk", root: "path" })
    assert_instance_of ActiveStorage::Service::DiskService, service
  end

  test "raises error when passing non-existent service name" do
    assert_raise RuntimeError do
      ActiveStorage::Service::Configurator.build(:bigfoot, {})
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activestorage_legacy-0.2.1 test/service/configurator_test.rb
activestorage_legacy-0.2.0 test/service/configurator_test.rb
activestorage_legacy-0.1.3 test/service/configurator_test.rb
activestorage_legacy-0.1.2 test/service/configurator_test.rb
activestorage_legacy-0.1.1 test/service/configurator_test.rb
activestorage_legacy-0.1.1.alpha test/service/configurator_test.rb
activestorage_legacy-0.1 test/service/configurator_test.rb