aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/struct/inspect_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/struct/inspect_spec.rb')
-rw-r--r--spec/ruby/core/struct/inspect_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/ruby/core/struct/inspect_spec.rb b/spec/ruby/core/struct/inspect_spec.rb
new file mode 100644
index 0000000000..94fb71a5f1
--- /dev/null
+++ b/spec/ruby/core/struct/inspect_spec.rb
@@ -0,0 +1,15 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../fixtures/classes', __FILE__)
+require File.expand_path('../shared/inspect', __FILE__)
+
+describe "Struct#inspect" do
+ it "returns a string representation of some kind" do
+ car = StructClasses::Car.new('Ford', 'Ranger')
+ car.inspect.should == '#<struct StructClasses::Car make="Ford", model="Ranger", year=nil>'
+
+ Whiskey = Struct.new(:name, :ounces)
+ Whiskey.new('Jack', 100).inspect.should == '#<struct Whiskey name="Jack", ounces=100>'
+ end
+
+ it_behaves_like(:struct_inspect, :inspect)
+end