summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_marshal.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 15:15:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 15:15:43 +0000
commit5f2f00b828bd9e4ce68e240d290ddff5627afc74 (patch)
tree56830470411bdaf525d1f4c489b120125efb9097 /test/ruby/test_marshal.rb
parent4479fc7ca74a1512ce00c013434a8119ad74e426 (diff)
downloadruby-5f2f00b828bd9e4ce68e240d290ddff5627afc74.tar.gz
ruby-5f2f00b828bd9e4ce68e240d290ddff5627afc74.tar.xz
ruby-5f2f00b828bd9e4ce68e240d290ddff5627afc74.zip
* lib/optparse.rb (OptionParser#order, #permute, #parse): allow an
array as argument. * test/ruby/test_*.rb: moved invariants to left side in assert_equal, and use assert_nil, assert_raises and so on. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_marshal.rb')
-rw-r--r--test/ruby/test_marshal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb
index 862b7e200..30b52f469 100644
--- a/test/ruby/test_marshal.rb
+++ b/test/ruby/test_marshal.rb
@@ -20,7 +20,7 @@ class TestMarshal < Test::Unit::TestCase
$y = Marshal.dump($x)
assert_equal($x, Marshal.load($y))
- assert_equal(Marshal.load(Marshal.dump(StrClone.new("abc"))).class, StrClone)
+ assert_instance_of(StrClone, Marshal.load(Marshal.dump(StrClone.new("abc"))))
[[1,2,3,4], [81, 2, 118, 3146]].each { |w,x,y,z|
a = (x.to_f + y.to_f / z.to_f) * Math.exp(w.to_f / (x.to_f + y.to_f / z.to_f))