Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMetadata_Clone_NilMaps (0.21 sec)

  1. pkg/config/resource/metadata_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    )
    
    func TestMetadata_Clone_NilMaps(t *testing.T) {
    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName: NewFullName("ns1", "rs1"),
    		Version:  Version("v1"),
    	}
    
    	c := m.Clone()
    	g.Expect(m).To(Equal(c))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top