mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 22:41:03 +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>
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			781 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			781 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright Earl Warren <contact@earl-warren.org>
 | |
| // Copyright Loïc Dachary <loic@dachary.org>
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package tests
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	driver_options "forgejo.org/services/f3/driver/options"
 | |
| 
 | |
| 	f3_kind "code.forgejo.org/f3/gof3/v3/kind"
 | |
| 	"code.forgejo.org/f3/gof3/v3/options"
 | |
| 	forge_test "code.forgejo.org/f3/gof3/v3/tree/tests/f3/forge"
 | |
| )
 | |
| 
 | |
| type forgeTest struct {
 | |
| 	forge_test.Base
 | |
| }
 | |
| 
 | |
| func (o *forgeTest) NewOptions(t *testing.T) options.Interface {
 | |
| 	return newTestOptions(t)
 | |
| }
 | |
| 
 | |
| func (o *forgeTest) GetExceptions() []f3_kind.Kind {
 | |
| 	return []f3_kind.Kind{}
 | |
| }
 | |
| 
 | |
| func (o *forgeTest) GetNonTestUsers() []string {
 | |
| 	return []string{
 | |
| 		"user1",
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func newForgeTest() forge_test.Interface {
 | |
| 	t := &forgeTest{}
 | |
| 	t.SetName(driver_options.Name)
 | |
| 	return t
 | |
| }
 |