diff options
author | Azul <azul@leap.se> | 2013-04-03 11:22:16 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-04-03 11:22:16 +0200 |
commit | 654ab25fa4659119d5ddaa9ae116fce69a386ab1 (patch) | |
tree | 0f0adf5a0c92a20a7084c251dafac7a420f9b640 /users | |
parent | f4172ac9ea7a484659fa2019119533bc9569880f (diff) |
make sure user tests also run when run from users subdir
* The APP_CONFIG needs to be initialized in core so that is required from other engines
* paths for load_views need to be relative to the model - not to rails root.
Diffstat (limited to 'users')
-rw-r--r-- | users/app/models/user.rb | 3 | ||||
-rw-r--r-- | users/test/integration/api/rack_test.rb | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/users/app/models/user.rb b/users/app/models/user.rb index c9b367f..62c5054 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -47,7 +47,8 @@ class User < CouchRest::Model::Base timestamps! design do - load_views(Rails.root.join('users', 'app', 'designs', 'user')) + own_path = Pathname.new(File.dirname(__FILE__)) + load_views(own_path.join('..', 'designs', 'user')) view :by_login view :by_created_at end diff --git a/users/test/integration/api/rack_test.rb b/users/test/integration/api/rack_test.rb new file mode 100644 index 0000000..da960f2 --- /dev/null +++ b/users/test/integration/api/rack_test.rb @@ -0,0 +1,12 @@ +CONFIG_RU = (Rails.root + 'config.ru').to_s +OUTER_APP = Rack::Builder.parse_file(CONFIG_RU).first + +class RackTest < ActiveSupport::TestCase + include Rack::Test::Methods + include Warden::Test::Helpers + include LeapWebCore::AssertResponses + + def app + OUTER_APP + end +end |