summaryrefslogtreecommitdiff
path: root/test/helpers/test_adapter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers/test_adapter.rb')
-rw-r--r--test/helpers/test_adapter.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/helpers/test_adapter.rb b/test/helpers/test_adapter.rb
deleted file mode 100644
index 46d4713..0000000
--- a/test/helpers/test_adapter.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-class TestAdapter
- def initialize(status, content)
- @status = status
- @content = content
- end
-
- def get(url, opts)
- yield @status, @content
- end
-end