mirror of
				https://github.com/nvbn/thefuck.git
				synced 2025-10-30 22:54:14 +00:00 
			
		
		
		
	Offer git commit --amend after previous git commit (#764)
This commit is contained in:
		
				
					committed by
					
						 Joseph Frazier
						Joseph Frazier
					
				
			
			
				
	
			
			
			
						parent
						
							7b10a86267
						
					
				
				
					commit
					797ca1c564
				
			
							
								
								
									
										25
									
								
								tests/rules/test_git_commit_amend.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								tests/rules/test_git_commit_amend.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| import pytest | ||||
| from thefuck.rules.git_commit_amend import match, get_new_command | ||||
| from thefuck.types import Command | ||||
|  | ||||
|  | ||||
| @pytest.mark.parametrize('script, output', [ | ||||
|     ('git commit -m "test"', 'test output'), | ||||
|     ('git commit', '')]) | ||||
| def test_match(output, script): | ||||
|     assert match(Command(script, output)) | ||||
|  | ||||
|  | ||||
| @pytest.mark.parametrize('script', [ | ||||
|     'git branch foo', | ||||
|     'git checkout feature/test_commit', | ||||
|     'git push']) | ||||
| def test_not_match(script): | ||||
|     assert not match(Command(script, '')) | ||||
|  | ||||
|  | ||||
| @pytest.mark.parametrize('script', [ | ||||
|     ('git commit -m "test commit"'), | ||||
|     ('git commit')]) | ||||
| def test_get_new_command(script): | ||||
|     assert get_new_command(Command(script, '')) == 'git commit --amend' | ||||
		Reference in New Issue
	
	Block a user