summaryrefslogtreecommitdiff
path: root/test/unit/couch_stream_test.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2012-11-12 23:53:51 -0800
committerelijah <elijah@riseup.net>2012-11-12 23:53:51 -0800
commitc37a35df81b2d6becc09f1820240db24c3ec632c (patch)
tree50187e4ab1face237760614ecf844b42efdd51e1 /test/unit/couch_stream_test.rb
parentc90d30621e042cc3e52ffc87e3491ab110a57e9e (diff)
first fully working version of leap_ca
Diffstat (limited to 'test/unit/couch_stream_test.rb')
-rw-r--r--test/unit/couch_stream_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/couch_stream_test.rb b/test/unit/couch_stream_test.rb
index af5a34e..7f86351 100644
--- a/test/unit/couch_stream_test.rb
+++ b/test/unit/couch_stream_test.rb
@@ -1,5 +1,5 @@
-require 'test_helper'
-require 'lib/couch_stream'
+require File.expand_path('../../test_helper.rb', __FILE__)
+require 'leap_ca/couch_stream'
# we'll mock this
module Yajl
@@ -11,7 +11,7 @@ class CouchStreamTest < MiniTest::Unit::TestCase
def setup
@root = "http://server/database"
- @stream = CouchStream.new(@root)
+ @stream = LeapCA::CouchStream.new(@root)
@url = @root + "/_changes?a=b&c=d"
@path = "_changes"
@options = {:a => :b, :c => :d}