summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb')
-rw-r--r--spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb b/spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb
new file mode 100644
index 0000000000..fe15f1bf7d
--- /dev/null
+++ b/spec/ruby/library/set/sortedset/pretty_print_cycle_spec.rb
@@ -0,0 +1,10 @@
+require_relative '../../../spec_helper'
+require 'set'
+
+describe "SortedSet#pretty_print_cycle" do
+ it "passes the 'pretty print' representation of a self-referencing SortedSet to the pretty print writer" do
+ pp = mock("PrettyPrint")
+ pp.should_receive(:text).with("#<SortedSet: {...}>")
+ SortedSet[1, 2, 3].pretty_print_cycle(pp)
+ end
+end