Spec all encoders can be instantiated

MSP-11145
This commit is contained in:
Luke Imhoff 2014-10-20 13:31:12 -05:00
parent 2c997d99b5
commit 103382a2ef
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
1 changed files with 6 additions and 1 deletions

View File

@ -34,7 +34,7 @@ describe 'modules' do
context module_type do
let(:module_set) {
framework.send(module_type)
framework.modules.module_set(module_type)
}
type_pathname = modules_pathname.join(type_directory)
@ -71,4 +71,9 @@ describe 'modules' do
module_type: 'auxiliary',
modules_pathname: modules_pathname,
type_directory: 'auxiliary'
it_should_behave_like 'all modules with module type can be instantiated',
module_type: 'encoder',
modules_pathname: modules_pathname,
type_directory: 'encoders'
end