Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestFullNameString (3.47 sec)

  1. pkg/config/resource/name_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    import (
    	"testing"
    )
    
    func TestFullNameString(t *testing.T) {
    	n := NewFullName("ns1", "l1")
    	if n.String() != "ns1/l1" {
    		t.Fatalf("unexpected name string: %v", n.String())
    	}
    }
    
    func TestFullNameString_NoName(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
Back to top