public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
updated spec to work with changes to a stash
timcharper (author)
Wed Jul 23 12:09:41 -0700 2008
commit  c7ef297ca49bd80f004ba01fe17996aff13be9b8
tree    7d04333477478e97577ca8d768f0139c6a169092
parent  1900ade2a306bd92b8d5540d25852f8097c7d2d1
...
32
33
34
35
 
36
37
38
 
39
40
41
...
32
33
34
 
35
36
37
 
38
39
40
41
0
@@ -32,10 +32,10 @@ EOF
0
     before(:each) do
0
       @stash_controller.stub!(:select_stash).and_return({:description=>" On master: boogy", :name=>"stash@{0}", :id=>0})
0
       Git.command_response["stash", "list"] = fixture_file("stash_list_response_many_stashes.txt")
0
- Git.command_response["stash", "apply", "--index", "stash@{0}"] = fixture_file("status_output.txt")
0
+ Git.command_response["stash", "pop", "stash@{0}"] = fixture_file("status_output.txt")
0
       Git.command_response["stash", "show", "-p", "stash@{0}"] = fixture_file("changed_files.diff")
0
       @output = capture_output do
0
- dispatch(:controller => "stash", :action => "apply")
0
+ dispatch(:controller => "stash", :action => "pop")
0
       end
0
     
0
       @h = Hpricot(@output)

Comments

    No one has commented yet.