blob: a7a96f2558c887c17d26b27f2821abb89d1f67dd [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 "cryptohome/mock_homedirs.h"
using testing::_;
using testing::Return;
namespace cryptohome {
MockHomeDirs::MockHomeDirs() {
ON_CALL(*this, Init(_, _, _)).WillByDefault(Return(true));
}
MockHomeDirs::~MockHomeDirs() {}
} // namespace cryptohome