summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/struct/shared/accessor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/struct/shared/accessor.rb')
-rw-r--r--spec/rubyspec/core/struct/shared/accessor.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/rubyspec/core/struct/shared/accessor.rb b/spec/rubyspec/core/struct/shared/accessor.rb
deleted file mode 100644
index dbf5e78f43..0000000000
--- a/spec/rubyspec/core/struct/shared/accessor.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-describe :struct_accessor, shared: true do
- it "does not override the instance accessor method" do
- struct = Struct.new(@method.to_sym)
- instance = struct.new 42
- instance.send(@method).should == 42
- end
-end