Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions login1/dbus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package login1
package login1_test

import (
"fmt"
"os/user"
"regexp"
"testing"

"github.com/coreos/go-systemd/v22/login1"
)

// TestNew ensures that New() works without errors.
func TestNew(t *testing.T) {
_, err := New()

if err != nil {
if _, err := login1.New(); err != nil {
t.Fatal(err)
}
}

func TestListSessions(t *testing.T) {
c, err := New()
c, err := login1.New()
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -60,7 +60,7 @@ func TestListSessions(t *testing.T) {
}

func TestListUsers(t *testing.T) {
c, err := New()
c, err := login1.New()
if err != nil {
t.Fatal(err)
}
Expand Down