mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-01 14:28:02 +08:00
Merge pull request #3449 from Zanadar/test/flags-test
Add test for flags package
This commit is contained in:
commit
8a1aa982e4
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