test/unit/cli/command/base_test.rb in inch-0.5.0.rc5 vs test/unit/cli/command/base_test.rb in inch-0.5.0.rc6

- old
+ new

@@ -1,15 +1,15 @@ -require File.expand_path(File.dirname(__FILE__) + "/../../../test_helper") +require File.expand_path(File.dirname(__FILE__) + '/../../../test_helper') describe ::Inch::CLI::Command::Console do before do @command = ::Inch::CLI::Command::Base.new end - it "should implement some defaults" do + it 'should implement some defaults' do assert @command.name assert @command.usage assert @command.description - assert_raises(NotImplementedError) { @command.run("something") } + assert_raises(NotImplementedError) { @command.run('something') } end end