blob: 9bdc5c4883ed1d2e416c3f00ee2c92a443c09d8c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
$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
|