Skip to content

Commit

Permalink
Formatting: insert line breaks in between specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhl committed Jan 22, 2009
1 parent 3e675fc commit 574e380
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/shell_spec.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
@shell.path_parts("dir['app").should == [ "dir", "[", "'", "app", "" ] @shell.path_parts("dir['app").should == [ "dir", "[", "'", "app", "" ]
@shell.path_parts('dir/"app').should == [ "dir", "/", '"', "app", "" ] @shell.path_parts('dir/"app').should == [ "dir", "/", '"', "app", "" ]
end end

it "matches open path commands on globals for readline tab completion" do it "matches open path commands on globals for readline tab completion" do
@shell.path_parts("$dir['app").should == [ "$dir", "[", "'", "app", "" ] @shell.path_parts("$dir['app").should == [ "$dir", "[", "'", "app", "" ]
@shell.path_parts('$dir/"app').should == [ "$dir", "/", '"', "app", "" ] @shell.path_parts('$dir/"app').should == [ "$dir", "/", '"', "app", "" ]
end end

it "matches open path commands on instance vars for readline tab completion" do it "matches open path commands on instance vars for readline tab completion" do
@shell.path_parts("@dir['app").should == [ "@dir", "[", "'", "app", "" ] @shell.path_parts("@dir['app").should == [ "@dir", "[", "'", "app", "" ]
@shell.path_parts('@dir/"app').should == [ "@dir", "/", '"', "app", "" ] @shell.path_parts('@dir/"app').should == [ "@dir", "/", '"', "app", "" ]
Expand Down

0 comments on commit 574e380

Please sign in to comment.