summaryrefslogtreecommitdiff
path: root/2022/02/jankenpon/jankenpon_test.go
blob: a96156069aaec3fc9f5b946a668741576a310243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package jankenpon_test

import (
	. "github.com/onsi/ginkgo/v2"
	. "github.com/onsi/gomega"
)

var _ = Describe("jankenpon", func() {
	Describe("Part One", func() {
		It("should solve the example to the answer", func() {
			Expect(true).To(Equal(true))
		})
	})
	Describe("Part Two", func() {
		It("should solve the example to the answer", func() {
			Expect(true).To(Equal(true))
		})
	})
})