mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Update wsl_drvfs_mounts test to assert 9p and ext4 mounts
This commit is contained in:
parent
7ad3eda1b7
commit
ddabc7431b
1 changed files with 3 additions and 1 deletions
|
|
@ -500,6 +500,8 @@ none on /run/shm type tmpfs (rw,nosuid,nodev,noatime)
|
|||
none on /run/user type tmpfs (rw,nosuid,nodev,noexec,noatime,mode=755)
|
||||
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noatime)
|
||||
C: on /mnt/c type drvfs (rw,noatime)
|
||||
drvfs on /mnt/d type 9p (rw,noatime,dirsync,anme=drvfs;path=D:\\)
|
||||
/dev/sdc on /mnt/e type ext4 (rw,relatime,data=ordered)
|
||||
EOF
|
||||
}
|
||||
|
||||
|
|
@ -509,7 +511,7 @@ EOF
|
|||
end
|
||||
|
||||
it "should locate DrvFs mount path" do
|
||||
expect(subject.wsl_drvfs_mounts).to eq(["/mnt/c"])
|
||||
expect(subject.wsl_drvfs_mounts).to eq(["/mnt/c", "/mnt/d", "/mnt/e"])
|
||||
end
|
||||
|
||||
context "when no DrvFs mounts exist" do
|
||||
|
|
|
|||
Loading…
Reference in a new issue