mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright Earl Warren <contact@earl-warren.org>
 | |
| // Copyright Loïc Dachary <loic@dachary.org>
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package tests
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	forgejo_log "forgejo.org/modules/log"
 | |
| 	driver_options "forgejo.org/services/f3/driver/options"
 | |
| 	"forgejo.org/services/f3/util"
 | |
| 
 | |
| 	"code.forgejo.org/f3/gof3/v3/options"
 | |
| )
 | |
| 
 | |
| func newTestOptions(_ *testing.T) options.Interface {
 | |
| 	o := options.GetFactory(driver_options.Name)().(*driver_options.Options)
 | |
| 	o.SetLogger(util.NewF3Logger(nil, forgejo_log.GetLogger(forgejo_log.DEFAULT)))
 | |
| 	return o
 | |
| }
 |