vim-polyglot/spec/build_spec.rb
2013-09-14 20:46:47 +02:00

9 lines
208 B
Ruby

$plugin_path = File.expand_path('../..', __FILE__)
describe 'build script' do
it 'should run and return success code' do
Dir.chdir($plugin_path)
expect(system('bash ./build')).to be_true
end
end