...

Source file src/github.com/opencontainers/runc/libcontainer/nsenter/test/escape_test.go

Documentation: github.com/opencontainers/runc/libcontainer/nsenter/test

     1  package escapetest
     2  
     3  import "testing"
     4  
     5  // The actual test function is in escape.go
     6  // so that it can use cgo (import "C").
     7  // This wrapper is here for gotest to find.
     8  
     9  func TestEscapeJSON(t *testing.T) {
    10  	testEscapeJSON(t)
    11  }
    12  

View as plain text