Skip to content

Instantly share code, notes, and snippets.

@ggilder
Forked from armandocanals/linked_list.rb
Created June 8, 2012 04:44
Show Gist options
  • Save ggilder/2893651 to your computer and use it in GitHub Desktop.
Save ggilder/2893651 to your computer and use it in GitHub Desktop.
Linked list
class Node
attr_accessor :next, :data
def push(str)
n = Node.new
n.data = str
node = self
next_node = nil
while node.next
next_node = node
end
next_node.next = n
end
end
require 'minitest/autorun'
describe Node do
before do
@node = Node.new
end
describe "pushing nodes onto list" do
it "should add multiple nodes to the end of the list" do
@node.push("a")
@node.push("b")
@node.next.data.should == "a"
@node.next.next.should_not be_nil
@node.next.next.data.should == "b"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment