From 198efceb1f14c9822bf87ede6961d0f94a4760db Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 23 Sep 2021 16:14:37 +0200 Subject: Implemented commands until helloworld works \o/ --- pkg/pointer/stack-stack_test.go | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'pkg/pointer/stack-stack_test.go') diff --git a/pkg/pointer/stack-stack_test.go b/pkg/pointer/stack-stack_test.go index fd4c9ea..d5809fd 100644 --- a/pkg/pointer/stack-stack_test.go +++ b/pkg/pointer/stack-stack_test.go @@ -248,13 +248,3 @@ func TestUnder(t *testing.T) { require.Equal(t, expected, ss) }) } - -func TestPushPop(t *testing.T) { - ss := NewStackStack() - ss.Push(12) - ss.Push(5) - v := ss.Pop() - require.Equal(t, 5, v) - v = ss.Pop() - require.Equal(t, 12, v) -} -- cgit v1.2.3