mirror of
				https://github.com/restic/restic.git
				synced 2025-11-04 04:37:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			447 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			447 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package errors_test
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/restic/restic/internal/errors"
 | 
						|
)
 | 
						|
 | 
						|
func TestFatal(t *testing.T) {
 | 
						|
	for _, v := range []struct {
 | 
						|
		err      error
 | 
						|
		expected bool
 | 
						|
	}{
 | 
						|
		{errors.Fatal("broken"), true},
 | 
						|
		{errors.Fatalf("broken %d", 42), true},
 | 
						|
		{errors.New("error"), false},
 | 
						|
	} {
 | 
						|
		if errors.IsFatal(v.err) != v.expected {
 | 
						|
			t.Fatalf("IsFatal for %q, expected: %v, got: %v", v.err, v.expected, errors.IsFatal(v.err))
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |