forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issues with default_namespace when false or nil. Closes activea…
- Loading branch information
1 parent
6b0b09d
commit 0ad856a
Showing
2 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
require 'spec_helper' | ||
|
||
describe ActiveAdmin::Application do | ||
|
||
include Rails.application.routes.url_helpers | ||
|
||
[false, nil].each do |value| | ||
|
||
describe "with a #{value} default namespace" do | ||
|
||
before(:all) do | ||
@__original_application = ActiveAdmin.application | ||
application = ActiveAdmin::Application.new | ||
application.default_namespace = value | ||
ActiveAdmin.application = application | ||
load_defaults! | ||
reload_routes! | ||
end | ||
|
||
after(:all) do | ||
ActiveAdmin.application = @__original_application | ||
end | ||
|
||
it "should generate a dashboard controller" do | ||
defined?(::DashboardController).should be_true | ||
end | ||
|
||
it "should generate a dashboard route" do | ||
dashboard_path.should == "/" | ||
end | ||
|
||
it "should generate a log out path" do | ||
destroy_admin_user_session_path.should == "/admin_users/logout" | ||
end | ||
|
||
it "should generate a log in path" do | ||
new_admin_user_session_path.should == "/admin_users/login" | ||
end | ||
|
||
end | ||
|
||
end | ||
|
||
describe "with a test default namespace" do | ||
|
||
before(:all) do | ||
@__original_application = ActiveAdmin.application | ||
application = ActiveAdmin::Application.new | ||
application.default_namespace = :test | ||
ActiveAdmin.application = application | ||
load_defaults! | ||
reload_routes! | ||
end | ||
|
||
after(:all) do | ||
ActiveAdmin.application = @__original_application | ||
end | ||
|
||
it "should generate a dashboard controller" do | ||
defined?(::Test::DashboardController).should be_true | ||
end | ||
|
||
it "should generate a dashboard route" do | ||
test_dashboard_path.should == "/test" | ||
end | ||
|
||
it "should generate a log out path" do | ||
destroy_admin_user_session_path.should == "/test/logout" | ||
end | ||
|
||
it "should generate a log in path" do | ||
new_admin_user_session_path.should == "/test/login" | ||
end | ||
|
||
end | ||
|
||
end |