You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	added test for capabilities
This commit is contained in:
		
							
								
								
									
										24
									
								
								server/capability/capability_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								server/capability/capability_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| package capability | ||||
|  | ||||
| import ( | ||||
| 	"testing" | ||||
|  | ||||
| 	"code.google.com/p/go.net/context" | ||||
| 	"github.com/franela/goblin" | ||||
| ) | ||||
|  | ||||
| func TestBlobstore(t *testing.T) { | ||||
| 	caps := map[string]bool{} | ||||
| 	caps[Registration] = true | ||||
|  | ||||
| 	ctx := NewContext(context.Background(), caps) | ||||
|  | ||||
| 	g := goblin.Goblin(t) | ||||
| 	g.Describe("Capabilities", func() { | ||||
|  | ||||
| 		g.It("Should get capabilities from context", func() { | ||||
| 			g.Assert(Enabled(ctx, Registration)).Equal(true) | ||||
| 			g.Assert(Enabled(ctx, "Fake Key")).Equal(false) | ||||
| 		}) | ||||
| 	}) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user