github.com/wanddynosios/cli@v7.1.0+incompatible/integration/v6/isolated/disable_feature_flag_command_test.go (about)

     1  package isolated
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/integration/helpers"
     5  	. "github.com/onsi/ginkgo"
     6  	. "github.com/onsi/gomega"
     7  	. "github.com/onsi/gomega/gbytes"
     8  	. "github.com/onsi/gomega/gexec"
     9  )
    10  
    11  var _ = Describe("disable-feature-flag command", func() {
    12  	Describe("help", func() {
    13  		When("--help flag is set", func() {
    14  			It("Displays command usage to output", func() {
    15  				session := helpers.CF("disable-feature-flag", "--help")
    16  				Eventually(session).Should(Say("NAME:"))
    17  				Eventually(session).Should(Say("disable-feature-flag - Prevent use of a feature"))
    18  				Eventually(session).Should(Say("USAGE:"))
    19  				Eventually(session).Should(Say("cf disable-feature-flag FEATURE_NAME"))
    20  				Eventually(session).Should(Say("SEE ALSO:"))
    21  				Eventually(session).Should(Say("enable-feature-flag, feature-flags"))
    22  				Eventually(session).Should(Exit(0))
    23  			})
    24  		})
    25  	})
    26  })