spec/trema/executables_spec.rb in trema-0.4.6 vs spec/trema/executables_spec.rb in trema-0.4.7

- old
+ new

@@ -14,36 +14,36 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -require File.join( File.dirname( __FILE__ ), "..", "spec_helper" ) -require "trema/executables" +require File.join(File.dirname(__FILE__), '..', 'spec_helper') +require 'trema/executables' describe Trema::Executables do subject { Trema::Executables } - its ( :cli ) { should be_a( String ) } - its ( :ovs_ofctl ) { should be_a( String ) } - its ( :ovs_openflowd ) { should be_a( String ) } - its ( :packet_capture ) { should be_a( String ) } - its ( :packetin_filter ) { should be_a( String ) } - its ( :phost ) { should be_a( String ) } - its ( :stdin_relay ) { should be_a( String ) } - its ( :switch ) { should be_a( String ) } - its ( :switch_manager ) { should be_a( String ) } - its ( :syslog_relay ) { should be_a( String ) } - its ( :tremashark ) { should be_a( String ) } + its ( :cli) { should be_a(String) } + its ( :ovs_ofctl) { should be_a(String) } + its ( :ovs_openflowd) { should be_a(String) } + its ( :packet_capture) { should be_a(String) } + its ( :packetin_filter) { should be_a(String) } + its ( :phost) { should be_a(String) } + its ( :stdin_relay) { should be_a(String) } + its ( :switch) { should be_a(String) } + its ( :switch_manager) { should be_a(String) } + its ( :syslog_relay) { should be_a(String) } + its ( :tremashark) { should be_a(String) } - context "when Trema is compiled" do - before { FileTest.stub!( :executable? ).and_return( true ) } - its ( :compiled? ) { should be_true } + context 'when Trema is compiled' do + before { FileTest.stub!(:executable?).and_return(true) } + its ( :compiled?) { should be_true } end - context "when Trema is not compiled" do - before { FileTest.stub!( :executable? ).and_return( false ) } - its ( :compiled? ) { should be_false } + context 'when Trema is not compiled' do + before { FileTest.stub!(:executable?).and_return(false) } + its ( :compiled?) { should be_false } end end ### Local variables: