| 125 | } // namespace |
| 126 | |
| 127 | TEST_F(SshfsMount, throws_when_sshfs_does_not_exist) |
| 128 | { |
| 129 | bool invoked{false}; |
| 130 | auto request_exec = make_exec_that_fails_for("which sshfs", invoked); |
| 131 | REPLACE(ssh_channel_request_exec, request_exec); |
| 132 | |
| 133 | EXPECT_THROW(make_sshfsmount(), mp::SSHFSMissingError); |
| 134 | EXPECT_TRUE(invoked); |
| 135 | } |
| 136 | |
| 137 | TEST_F(SshfsMount, throws_when_unable_to_make_target_dir) |
| 138 | { |
nothing calls this directly
no test coverage detected