github.com/ethersphere/bee/v2@v2.2.0/pkg/storer/migration/step_01_test.go (about)

     1  // Copyright 2023 The Swarm Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package migration_test
     6  
     7  import (
     8  	"testing"
     9  
    10  	"github.com/stretchr/testify/assert"
    11  
    12  	localmigration "github.com/ethersphere/bee/v2/pkg/storer/migration"
    13  )
    14  
    15  func Test_Step_01(t *testing.T) {
    16  	t.Parallel()
    17  
    18  	stepFn := localmigration.Step_01
    19  	assert.NoError(t, stepFn())
    20  }