Sha256: 568d6d60e2520bbba2c963f792db2fd9041ef9cb29f0dfebdb8fdde7148a7fca
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
RSpec.describe Rodakase::Container do before do module Test class Container < Rodakase::Container setting :root, SPEC_ROOT.join('fixtures/test').realpath configure do load_paths!('lib') end end end module Test Import = Container.import_module end end describe '.require' do it 'requires a single file' do Test::Container.require('lib/test/models') expect(Test.const_defined?(:Models)).to be(true) end it 'requires many files when glob pattern is passed' do Test::Container.require('lib/test/models/*.rb') expect(Test::Models.const_defined?(:User)).to be(true) expect(Test::Models.const_defined?(:Book)).to be(true) end end describe '.require_component' do it 'requires components from configured load paths' do Test::Container.require_component('test.foo') expect(Test.const_defined?(:Foo)).to be(true) expect(Test.const_defined?(:Dep)).to be(true) expect(Test::Foo.new.dep).to be_instance_of(Test::Dep) end end describe '.boot' do it 'boots a given component' do Test::Container.boot!('bar') expect(Test.const_defined?(:Bar)).to be(true) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rodakase-0.0.1 | spec/unit/container_spec.rb |