Sha256: 853017e251c33e5b209f767238f6df1aa4dba84581a2da4c8758dba34fef01a7
Contents?: true
Size: 1.51 KB
Versions: 5
Compression:
Stored size: 1.51 KB
Contents
require 'rails/generators/test_unit' module TestUnit module Generators class OauthProviderGenerator < Base source_root File.expand_path('../templates', __FILE__) argument :name, :type => :string, :default => 'Oauth' class_option :fixture, :type => :boolean def copy_controller_test_files template 'controller_test_helper.rb', File.join('test', class_path, "#{file_name}_controller_test_helper.rb") template 'controller_test.rb', File.join('test/functional', class_path, "#{file_name}_controller_test.rb") template 'clients_controller_test.rb', File.join('test/functional', class_path, "#{file_name}_clients_controller_test.rb") end def copy_models_test_files template 'client_application_test.rb', File.join('test/unit', 'client_application_test.rb') template 'oauth_token_test.rb', File.join('test/unit', 'oauth_token_test.rb') template 'oauth_nonce_test.rb', File.join('test/unit', 'oauth_nonce_test.rb') end hook_for :fixture_replacement def create_fixture_file if options[:fixtures] && options[:fixture_replacement].nil? template 'client_applications.yml', File.join('test/fixtures', 'client_applications.yml') template 'oauth_tokens.yml', File.join('test/fixtures', 'oauth_tokens.yml') template 'oauth_nonces.yml', File.join('test/fixtures', 'oauth_nonces.yml') end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems