| Index: utils_unittest.cc
|
| diff --git a/utils_unittest.cc b/utils_unittest.cc
|
| index a66e739d143d8167e74aeeb1e9c8a40a917caf12..b67114a9df8472056be784f46c1bf205154c8880 100644
|
| --- a/utils_unittest.cc
|
| +++ b/utils_unittest.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2010 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.
|
|
|
| @@ -17,6 +17,11 @@ namespace chromeos_update_engine {
|
|
|
| class UtilsTest : public ::testing::Test { };
|
|
|
| +TEST(UtilsTest, IsOfficialBuild) {
|
| + // Pretty lame test...
|
| + EXPECT_TRUE(utils::IsOfficialBuild());
|
| +}
|
| +
|
| TEST(UtilsTest, NormalizePathTest) {
|
| EXPECT_EQ("", utils::NormalizePath("", false));
|
| EXPECT_EQ("", utils::NormalizePath("", true));
|
|
|