viniciusoyama/rabbitmq-spec

View on GitHub
lib/rabbitmq-spec/dsl/builder.rb

Summary

Maintainability
A
0 mins
Test Coverage
# @api private
# Namespace for all DSL builders.
# Each builder is a class that implements the methods that are called when evaluating the DSL
class RabbitMQSpec::DSL::Builder
  autoload :Base, 'rabbitmq-spec/dsl/builder/base'
  autoload :Queue, 'rabbitmq-spec/dsl/builder/queue'
  autoload :Exchange, 'rabbitmq-spec/dsl/builder/exchange'
end