-
-
Save ggilder/2893651 to your computer and use it in GitHub Desktop.
Linked list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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