aboutsummaryrefslogtreecommitdiffstats
path: root/libethconsole/JSV8ScopeBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libethconsole/JSV8ScopeBase.cpp')
-rw-r--r--libethconsole/JSV8ScopeBase.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/libethconsole/JSV8ScopeBase.cpp b/libethconsole/JSV8ScopeBase.cpp
deleted file mode 100644
index 5bd7bf6a..00000000
--- a/libethconsole/JSV8ScopeBase.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// Created by Marek Kotewicz on 27/04/15.
-//
-
-#include <boost/test/unit_test.hpp>
-#include "../../libethconsole/JSV8ScopeBase.h"
-
-using namespace std;
-using namespace dev;
-using namespace dev::eth;
-
-BOOST_AUTO_TEST_SUITE(jsscope)
-
-BOOST_AUTO_TEST_CASE(common)
-{
- JSV8ScopeBase scope;
- string result = scope.evaluate("1 + 1");
- BOOST_CHECK_EQUAL(result, "2");
-}
-
-BOOST_AUTO_TEST_SUITE_END()