summaryrefslogtreecommitdiff
path: root/deno2/deno_test.cc
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-06-10 00:32:04 +0200
committerRyan Dahl <ry@tinyclouds.org>2018-06-10 01:02:08 +0200
commit110ddab670cbf477488cceeea2842c980942d7b8 (patch)
tree6bc1e6dd42f01b98f302e97b4dd4dbb3a7be700d /deno2/deno_test.cc
parentfe9ea6dcf8f57cff5c3856a5d54e8f9c8236a924 (diff)
Add deno2 prototype from external repo.
Diffstat (limited to 'deno2/deno_test.cc')
-rw-r--r--deno2/deno_test.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/deno2/deno_test.cc b/deno2/deno_test.cc
new file mode 100644
index 000000000..3656e1d1f
--- /dev/null
+++ b/deno2/deno_test.cc
@@ -0,0 +1,15 @@
+// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
+// All rights reserved. MIT License.
+#include "testing/gtest/include/gtest/gtest.h"
+
+#include "./deno.h"
+
+TEST(SnapshotTest, InitializesCorrectly) {
+ EXPECT_TRUE(true);
+ // TODO(ry) add actual tests
+}
+
+int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}