2015-05-12 15:31:15 +03:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
|
|
|
// Contributor: Aaron Meihm ameihm@mozilla.com [:alm]
|
2015-08-27 17:41:13 +03:00
|
|
|
|
2015-08-26 21:15:40 +03:00
|
|
|
package pkg /* import "mig.ninja/mig/modules/pkg" */
|
2015-05-12 15:31:15 +03:00
|
|
|
|
|
|
|
import (
|
2015-08-26 00:54:52 +03:00
|
|
|
"mig.ninja/mig/testutil"
|
2015-05-12 15:31:15 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRegistration(t *testing.T) {
|
|
|
|
testutil.CheckModuleRegistration(t, "pkg")
|
|
|
|
}
|