• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..23-Jun-2021-

README.mdH A D23-Jun-2021719 3216

account.goH A D23-Jun-202136.9 KiB1,142846

amounts.goH A D23-Jun-20216.7 KiB235176

assets.goH A D23-Jun-20219.4 KiB365291

errors.goH A D23-Jun-20213.9 KiB14090

fee.goH A D23-Jun-20214.4 KiB156134

format.goH A D23-Jun-20213 KiB11787

keys.goH A D23-Jun-20211.9 KiB8154

memo.goH A D23-Jun-20213.2 KiB132104

pages.goH A D23-Jun-20215.5 KiB207156

ping.goH A D23-Jun-20211 KiB3623

results.goH A D23-Jun-20212.2 KiB7558

stellar_uri.goH A D23-Jun-202112.9 KiB497375

summary.goH A D23-Jun-20215.7 KiB134126

transactions.goH A D23-Jun-2021235 105

tx.goH A D23-Jun-202110 KiB482369

verify.goH A D23-Jun-2021813 4132

README.md

1# stellarnet
2
3## Testing
4
5This package uses the [vcr](https://github.com/keybase/vcr) package to record http responses.  Running
6
7    go test
8
9will use the pre-recorded responses to the stellar horizon requests.
10
11To run against the test horizon servers:
12
13    go test -live
14
15To record new responses from the test horizon servers:
16
17    go test -record
18
19This makes `go test` very fast (0.02s) as it doesn't hit the network at all.
20Currently, `go test -live` or `go test -record` takes 20s.
21
22## Forks
23
24To make a link so the tests use keybase's fork of the horizon client:
25
26	ln -s $(GOPATH)/src/github.com/keybase/stellar-org $(GOPATH)/src/github.com/stellar/go
27
28And to remove it:
29
30	rm $(GOPATH)/src/github.com/stellar/go
31
32