Gopher2600/resources/resources_test.go
2023-07-06 13:49:18 +01:00

46 lines
1.5 KiB
Go

// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package resources_test
import (
"testing"
"github.com/jetsetilly/gopher2600/resources"
"github.com/jetsetilly/gopher2600/test"
)
func TestJoinPath(t *testing.T) {
pth, err := resources.JoinPath("foo/bar", "baz")
test.ExpectEquality(t, err, nil)
test.ExpectEquality(t, pth, ".gopher2600/foo/bar/baz")
pth, err = resources.JoinPath("foo", "bar", "baz")
test.ExpectEquality(t, err, nil)
test.ExpectEquality(t, pth, ".gopher2600/foo/bar/baz")
pth, err = resources.JoinPath("foo/bar", "")
test.ExpectEquality(t, err, nil)
test.ExpectEquality(t, pth, ".gopher2600/foo/bar")
pth, err = resources.JoinPath("", "baz")
test.ExpectEquality(t, err, nil)
test.ExpectEquality(t, pth, ".gopher2600/baz")
pth, err = resources.JoinPath("", "")
test.ExpectEquality(t, err, nil)
test.ExpectEquality(t, pth, ".gopher2600")
}