mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'test_helper'
|
|
|
|
require "generators/devise/devise_generator"
|
|
|
|
class DeviseGeneratorTest < Rails::Generators::TestCase
|
|
tests Devise::Generators::DeviseGenerator
|
|
destination File.expand_path("../../tmp", __FILE__)
|
|
|
|
setup do
|
|
prepare_destination
|
|
copy_routes
|
|
end
|
|
|
|
test "route generation for simple model names" do
|
|
run_generator %w(monster name:string)
|
|
assert_file "config/routes.rb", /devise_for :monsters/
|
|
end
|
|
|
|
test "route generation for namespaced model names" do
|
|
run_generator %w(monster/goblin name:string)
|
|
match = /devise_for :goblins, :class_name => "Monster::Goblin"/
|
|
assert_file "config/routes.rb", match
|
|
end
|
|
|
|
test "route generation with skip routes" do
|
|
run_generator %w(monster name:string --skip-routes)
|
|
match = /devise_for :monsters, :skip => :all/
|
|
assert_file "config/routes.rb", match
|
|
end
|
|
|
|
def copy_routes
|
|
routes = File.expand_path("../../rails_app/config/routes.rb", __FILE__)
|
|
destination = File.join(destination_root, "config")
|
|
|
|
FileUtils.mkdir_p(destination)
|
|
FileUtils.cp routes, destination
|
|
end
|
|
|
|
end
|