mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f78f7de96a
Signed-off-by: wefine <wang.xiaoren@zte.com.cn>
13 lines
198 B
Go
13 lines
198 B
Go
// +build linux,!btrfs_noversion
|
|
|
|
package btrfs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLibVersion(t *testing.T) {
|
|
if btrfsLibVersion() <= 0 {
|
|
t.Error("expected output from btrfs lib version > 0")
|
|
}
|
|
}
|