24 lines
294 B
Go
24 lines
294 B
Go
package moon_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"code.humancabbage.net/moonmath/moon"
|
|
)
|
|
|
|
func TestCDPR(t *testing.T) {
|
|
}
|
|
|
|
func TestProjection(t *testing.T) {
|
|
p := moon.ProjectDates(time.Now(), 68900, 1.0055, []float64{
|
|
100000,
|
|
150000,
|
|
200000,
|
|
250000,
|
|
300000,
|
|
350000,
|
|
})
|
|
_ = p
|
|
}
|