mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Add test for flags.
License: MIT Signed-off-by: Zander Mackie <zmackie@gmail.com>
This commit is contained in:
parent
66315b8e4f
commit
4e05f07a4e
20
flags/flags_test.go
Normal file
20
flags/flags_test.go
Normal file
@ -0,0 +1,20 @@
|
||||
package flags
|
||||
|
||||
import (
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
// This variable is initialized before flags init(), so we export the ENV variable here.
|
||||
var _lowMemOn = lowMemOn()
|
||||
|
||||
func lowMemOn() error {
|
||||
os.Setenv("IPFS_LOW_MEM", "true")
|
||||
return nil
|
||||
}
|
||||
|
||||
func TestLowMemMode(t *testing.T) {
|
||||
if !LowMemMode {
|
||||
t.Fatal("LowMemMode does not turn on even with 'IPFS_LOW_MEM' ENV variable set.")
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user