spec/import_spec.rb in terminal-table-1.2.0 vs spec/import_spec.rb in terminal-table-1.3.0

- old
+ new

@@ -1,11 +1,11 @@ -require File.expand_path(File.dirname(__FILE__) + "/spec_helper") + +require File.dirname(__FILE__) + '/spec_helper' require "terminal-table/import" describe Object do describe "#table" do it "should allow creation of a terminal table" do - table(['foo', 'bar'], ['a', 'b'], [1, 2]). - should be_instance_of(Terminal::Table) + table(['foo', 'bar'], ['a', 'b'], [1, 2]).should be_instance_of(Terminal::Table) end end end