Sha256: c0d5b8464cea514078a927091edf8cb399e9ad0612c9062383158bd0cad1d534

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

require "test_helper"

module Whitespace::ISA
  describe Swap do
    before do
      @vm = Whitespace::VM.new
    end

    describe "#execute" do
      describe "when the value stack is empty" do
        it "raises Whitespace::EmptyError" do
          expect(@vm.vstack.size).must_equal 0

          expect { Swap.new(@vm).execute }.must_raise Whitespace::EmptyError
        end
      end

      describe "when the value stack has one element" do
        it "raises Whitespace::EmptyError" do
          @vm.vstack.push 1
          expect(@vm.vstack.size).must_equal 1

          expect { Swap.new(@vm).execute }.must_raise Whitespace::EmptyError
        end
      end

      describe "when the value stack has at least 2 elements" do
        it "swaps the top two elements on the stack" do
          @vm.vstack.push 1
          @vm.vstack.push 2
          @vm.vstack.push 3
          expect(@vm.vstack.size).must_equal 3

          Swap.new(@vm).execute

          expect(@vm.vstack.pop).must_equal 2
          expect(@vm.vstack.pop).must_equal 3
          expect(@vm.vstack.size).must_equal 1
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whitespace-ruby-1.0.0 test/whitespace/instructions/stack_manipulation/swap_test.rb