diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-17 03:45:46 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-17 03:45:46 +0800 |
commit | 9095b37343c5149c84433841599ca13327219422 (patch) | |
tree | a5b73ea7ebd38805456639242f520afb861b2ac2 /vm/main_test.go | |
parent | ffab36c7d8d44f0bdb3ac4389d9053519feae9cd (diff) | |
download | go-tangerine-9095b37343c5149c84433841599ca13327219422.tar go-tangerine-9095b37343c5149c84433841599ca13327219422.tar.gz go-tangerine-9095b37343c5149c84433841599ca13327219422.tar.bz2 go-tangerine-9095b37343c5149c84433841599ca13327219422.tar.lz go-tangerine-9095b37343c5149c84433841599ca13327219422.tar.xz go-tangerine-9095b37343c5149c84433841599ca13327219422.tar.zst go-tangerine-9095b37343c5149c84433841599ca13327219422.zip |
Convert vm test to checker
Tests are skipped due to reliance on deprecated mutan
Diffstat (limited to 'vm/main_test.go')
-rw-r--r-- | vm/main_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vm/main_test.go b/vm/main_test.go new file mode 100644 index 000000000..0ae03bf6a --- /dev/null +++ b/vm/main_test.go @@ -0,0 +1,9 @@ +package vm + +import ( + "testing" + + checker "gopkg.in/check.v1" +) + +func Test(t *testing.T) { checker.TestingT(t) } |