diff options
Diffstat (limited to 'libethconsole')
-rw-r--r-- | libethconsole/CMakeLists.txt | 7 | ||||
-rw-r--r-- | libethconsole/JSV8ScopeBase.cpp | 21 |
2 files changed, 0 insertions, 28 deletions
diff --git a/libethconsole/CMakeLists.txt b/libethconsole/CMakeLists.txt deleted file mode 100644 index 610c5888..00000000 --- a/libethconsole/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -cmake_policy(SET CMP0015 NEW) - -aux_source_directory(. SRCS) - -add_sources(${SRCS}) - - 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() |