aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/shared/tree_manager_shared.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared/tree_manager_shared.rb')
-rw-r--r--spec/support/shared/tree_manager_shared.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/support/shared/tree_manager_shared.rb b/spec/support/shared/tree_manager_shared.rb
deleted file mode 100644
index 48b561e1fb..0000000000
--- a/spec/support/shared/tree_manager_shared.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-shared_examples_for "TreeManager" do
- describe "clone" do
- it "clones the insert statement" do
- subject.instance_variable_get("@head").should_receive(:clone).and_return(:foo) # TODO: ick.
- dolly = subject.clone
- dolly.instance_variable_get("@head").should == :foo
- end
- end
-end