repo.or.cz
/
rubinius.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Fixed some C/C++ compiler errors due to stricter checks.
[rubinius.git]
/
spec
/
core
/
tuple
/
last_spec.rb
blob
793b699e9e7c503d42f28e5efae47023dc00f661
1
require File.expand_path('../../../spec_helper', __FILE__)
2
3
describe "Rubinius::Tuple#last" do
4
it "returns the last element" do
5
t = Rubinius::Tuple[:a, 'b', 3]
6
t.last.should == 3
7
end
8
end