mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-16 13:34:48 +02:00
Get machine_id working on macOS as well
This commit is contained in:
15
tools/utils/machine_id/api_test.go
Normal file
15
tools/utils/machine_id/api_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package machine_id
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
)
|
||||
|
||||
var _ = fmt.Print
|
||||
|
||||
func TestMachineId(t *testing.T) {
|
||||
_, err := MachineId()
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user