compiler: move tests from vm/tests

These don't belong to VM as they compile some Go code and run it in a VM. One
may call them integration tests, but I prefer to attribute them to
compiler. Moving these tests into pkg/compiler also allows to properly count
the compiler coverage they add:

-ok     github.com/CityOfZion/neo-go/pkg/compiler       (cached)        coverage: 69.7% of statements
+ok     github.com/CityOfZion/neo-go/pkg/compiler       (cached)        coverage: 84.2% of statements

This change also fixes `contant` typo and removes fake packages exposed to the
public by moving foo/bar/foobar into the testdata directory.
This commit is contained in:
Roman Khimov 2019-12-23 17:05:34 +03:00
parent 629c6a7333
commit 094c8474b7
19 changed files with 18 additions and 18 deletions

6
pkg/compiler/testdata/foo/foo.go vendored Normal file
View file

@ -0,0 +1,6 @@
package foo
// NewBar return an integer \o/
func NewBar() int {
return 10
}