22 lines
568 B
Go
22 lines
568 B
Go
|
// Copyright (c) 2017 Oracle America, Inc.
|
||
|
// The contents of this file are subject to the Mozilla Public License Version
|
||
|
// 2.0 (the "License"); you may not use this file except in compliance with the
|
||
|
// License. If a copy of the MPL was not distributed with this file, You can
|
||
|
// obtain one at http://mozilla.org/MPL/2.0/
|
||
|
|
||
|
package bmcs
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mitchellh/packer/packer"
|
||
|
)
|
||
|
|
||
|
func TestArtifactImpl(t *testing.T) {
|
||
|
var raw interface{}
|
||
|
raw = &Artifact{}
|
||
|
if _, ok := raw.(packer.Artifact); !ok {
|
||
|
t.Fatalf("Artifact should be artifact")
|
||
|
}
|
||
|
}
|