require 'spec_helper' require 'rubygems' require 'fileutils' describe 'Taza bin' do context 'running taza in the terminal' do specify { expect { system('taza') }.to output.to_stdout_from_any_process } end it 'should have an executable script' do skip 'Not sure this is really necessary, as this is just testing if command line returns anything. It also breaks JRuby.' path = 'spec/sandbox/generators' taza_bin = "#{File.expand_path(File.dirname(__FILE__)+'/../bin/taza')} #{path}" expect(system("ruby -c #{taza_bin} > #{null_device}")).to be true end end