blob: b84f3e652203c2aa1873b65ef23d143b8c45a5c4 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "mock_homedirs.h"
using testing::_;
using testing::Return;
namespace cryptohome {
MockHomeDirs::MockHomeDirs() {
ON_CALL(*this, Init(_, _)).WillByDefault(Return(true));
}
MockHomeDirs::~MockHomeDirs() {}
} // namespace cryptohome