aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/complex/marshal_dump_spec.rb
blob: 8d37929f54f8db165c27d46c6a056c2d4d93e6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)

describe "Complex#marshal_dump" do
  it "is a private method" do
    Complex.should have_private_instance_method(:marshal_dump, false)
  end

  it "dumps real and imaginary parts" do
    Complex(1, 2).send(:marshal_dump).should == [1, 2]
  end
end