Skip to content
Snippets Groups Projects
Select Git revision
  • b4366c7db5f377bda5569e46f4085d3803c1a89b
  • master default protected
  • 0.1.1
  • 0.1.0
4 results

sign.go

Blame
  • runnable-dummy_test.go 309 B
    // Copyright 2023 schukai GmbH
    // SPDX-License-Identifier: AGPL-3.0
    
    package jobqueue
    
    import (
    	"context"
    	"testing"
    )
    
    func TestDummyRunnable(t *testing.T) {
    
    	runner := &DummyRunnable{}
    
    	ctx := context.Background()
    	_, err := runner.Run(ctx)
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    }