summaryrefslogtreecommitdiff
path: root/src/file_util_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_util_test.cc')
-rw-r--r--src/file_util_test.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/file_util_test.cc b/src/file_util_test.cc
deleted file mode 100644
index 3f01c8115..000000000
--- a/src/file_util_test.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
-#include "testing/gtest/include/gtest/gtest.h"
-
-#include "file_util.h"
-
-TEST(FileUtilTest, ReadFileToStringFileNotExist) {
- std::string output;
- EXPECT_FALSE(deno::ReadFileToString("/should_error_out.txt", &output));
-}
-
-TEST(FileUtilTest, Basename) {
- EXPECT_EQ("foo.txt", deno::Basename("foo.txt"));
- EXPECT_EQ("foo.txt", deno::Basename("/foo.txt"));
- EXPECT_EQ("", deno::Basename("/"));
- EXPECT_EQ("foo.txt", deno::Basename(".\\foo.txt"));
- EXPECT_EQ("foo.txt", deno::Basename("/home/ryan/foo.txt"));
- EXPECT_EQ("foo.txt", deno::Basename("C:\\home\\ryan\\foo.txt"));
-}
-
-// TODO(ry) success unit test. Needs a tempfile or fixture.
-// TEST(FileUtilTest, ReadFileToStringSuccess) { }