I use concat 1.2.4 module to merge a few file fragments into 1 file. I've tested this code locally and it works.
When I submit it to a different machine, that machine runs 1 test which fails with this error:> Error while evaluating a Function> Call, $concat_basedir not defined. Try> running again with pluginsync=true on> the [master]
Test code is the following:
require 'spec_helper'
describe 'mymodule' do
context 'with defaults for all parameters' do
it { should contain_class('mymodule') }
end
end
How do I fix this error?
↧