aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/singleton/new_spec.rb
blob: cd20bebc2b5308ef0297306642f2d087264cd962 (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

describe "Singleton.new" do
  it "is a private method" do
    lambda { SingletonSpecs::NewSpec.new }.should raise_error(NoMethodError)
  end
end