https://github.com/google/cayley
Raw File
Tip revision: 53890d070ebfc8a4f7c9352f2c8f18cfb6ef6aa0 authored by Iddan Aaronsohn on 27 September 2019, 10:58:49 UTC
Merge branch 'master' into configuration-docs-update
Tip revision: 53890d0
path_test.go
// Copyright 2014 The Cayley Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package path_test

import (
	"testing"

	_ "github.com/cayleygraph/cayley/graph/memstore"
	"github.com/cayleygraph/cayley/graph/path/pathtest"
)

func TestMorphisms(t *testing.T) {
	pathtest.RunTestMorphisms(t, nil)
}
back to top