blob: 7e8af1a21192d153794c0b16fa4dd5e624a47059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require_relative '../../spec_helper'
describe "Struct::Group" do
it "is no longer defined" do
Struct.should_not.const_defined?(:Group)
end
end
describe "Struct::Passwd" do
it "is no longer defined" do
Struct.should_not.const_defined?(:Passwd)
end
end
|