aoc2023/day-13/one_test.go
2023-12-14 03:44:14 +00:00

20 lines
377 B
Go

package main
import (
"testing"
"github.com/go-playground/assert"
)
func TestCompare(t *testing.T) {
//t.Skip("skipping test")
img := newImg()
img.raw = []string{"#.##", "..#.", "##.."}
expected := []string{"#.#", "#..", ".##", "..#"}
t.Run("Should flip the image ninety degrees rightwards", func(t *testing.T) {
assert.Equal(t, expected, img.transposed())
})
}