github.com/vmware/govmomi@v0.43.0/govc/test/volume.bats (about) 1 #!/usr/bin/env bats 2 3 load test_helper 4 5 @test "volume.ls" { 6 vcsim_env 7 8 run govc volume.ls 9 assert_success "" 10 } 11 12 @test "volume.snapshot" { 13 vcsim_env 14 15 run govc volume.snapshot.ls 16 assert_failure 17 18 run govc volume.snapshot.rm 19 assert_failure 20 21 run govc volume.snapshot.create 22 assert_failure 23 }