mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
13 lines
382 B
Ruby
13 lines
382 B
Ruby
require "test_helper"
|
|
|
|
class InstallGeneratorTest < Rails::Generators::TestCase
|
|
tests Devise::Generators::InstallGenerator
|
|
destination File.expand_path("../../tmp", __FILE__)
|
|
setup :prepare_destination
|
|
|
|
test "Assert all files are properly created" do
|
|
run_generator
|
|
assert_file "config/initializers/devise.rb"
|
|
assert_file "config/locales/devise.en.yml"
|
|
end
|
|
end
|