mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
14 lines
199 B
Go
14 lines
199 B
Go
// +build linux,!btrfs_noversion
|
|
|
|
package btrfs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLibVersion(t *testing.T) {
|
|
if btrfsLibVersion() <= 0 {
|
|
t.Errorf("expected output from btrfs lib version > 0")
|
|
}
|
|
}
|