Skip to content
Snippets Groups Projects
Select Git revision
  • 4f8e2177d86d34cd1902ec11b4f6d0c10f1ef403
  • master default protected
  • 1.31
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
23 results

property.css

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