moonmath/moon/moon_test.go
Sam Fredrickson 83fd89446d
All checks were successful
Build & Test / Main (push) Successful in 1m20s
Fix module name.
2024-03-19 14:29:37 -07:00

24 lines
298 B
Go

package moon_test
import (
"testing"
"time"
"code.humancabbage.net/sam/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
}