Skip to content
Snippets Groups Projects
Select Git revision
  • 2e10a07051cba00443ab48f2381195977e5437bd
  • master default protected
  • v0.2.2
  • v0.2.1
  • v0.2.0
5 results

target-reqman.mk

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)
    	}
    
    }