Module: ActiveRecord::TestFixtures::ClassMethods
- Defined in:
 - activerecord/lib/active_record/test_fixtures.rb
 
Instance Method Summary collapse
- #fixtures(*fixture_set_names) ⇒ Object
 - 
  
    
      #set_fixture_class(class_names = {})  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Sets the model class for a fixture when the class name cannot be inferred from the fixture name.
 - #setup_fixture_accessors(fixture_set_names = nil) ⇒ Object
 - 
  
    
      #uses_transaction(*methods)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prevents automatically wrapping each specified test in a transaction, to allow application logic transactions to be tested in a top-level (non-nested) context.
 - #uses_transaction?(method) ⇒ Boolean
 
Instance Method Details
#fixtures(*fixture_set_names) ⇒ Object
      56 57 58 59 60 61 62 63 64 65 66 67 68 69 70  | 
    
      # File 'activerecord/lib/active_record/test_fixtures.rb', line 56 def fixtures(*fixture_set_names) if fixture_set_names.first == :all raise StandardError, "No fixture path found. Please set `#{self}.fixture_paths`." if fixture_paths.blank? fixture_set_names = fixture_paths.flat_map do |path| names = Dir[::File.join(path, "{**,*}/*.{yml}")].uniq names.reject! { |f| f.start_with?(file_fixture_path.to_s) } if defined?(file_fixture_path) && file_fixture_path names.map! { |f| f[path.to_s.size..-5].delete_prefix("/") } end.uniq else fixture_set_names = fixture_set_names.flatten.map(&:to_s) end self.fixture_table_names = (fixture_table_names | fixture_set_names).sort setup_fixture_accessors(fixture_set_names) end  | 
  
#set_fixture_class(class_names = {}) ⇒ Object
Sets the model class for a fixture when the class name cannot be inferred from the fixture name.
Examples:
set_fixture_class some_fixture:        SomeModel,
                  'namespaced/fixture' => Another::Model
The keys must be the fixture names, that coincide with the short paths to the fixture files.
      52 53 54  | 
    
      # File 'activerecord/lib/active_record/test_fixtures.rb', line 52 def set_fixture_class(class_names = {}) self.fixture_class_names = fixture_class_names.merge(class_names.stringify_keys) end  | 
  
#setup_fixture_accessors(fixture_set_names = nil) ⇒ Object
      72 73 74 75 76 77 78 79 80 81 82 83  | 
    
      # File 'activerecord/lib/active_record/test_fixtures.rb', line 72 def setup_fixture_accessors(fixture_set_names = nil) fixture_set_names = Array(fixture_set_names || fixture_table_names) unless fixture_set_names.empty? self.fixture_sets = fixture_sets.dup fixture_set_names.each do |fs_name| key = fs_name.to_s.include?("/") ? -fs_name.to_s.tr("/", "_") : fs_name key = -key.to_s if key.is_a?(Symbol) fs_name = -fs_name.to_s if fs_name.is_a?(Symbol) fixture_sets[key] = fs_name end end end  | 
  
#uses_transaction(*methods) ⇒ Object
Prevents automatically wrapping each specified test in a transaction, to allow application logic transactions to be tested in a top-level (non-nested) context.
      88 89 90 91  | 
    
      # File 'activerecord/lib/active_record/test_fixtures.rb', line 88 def uses_transaction(*methods) @uses_transaction = [] unless defined?(@uses_transaction) @uses_transaction.concat methods.map(&:to_s) end  | 
  
#uses_transaction?(method) ⇒ Boolean
      93 94 95 96  | 
    
      # File 'activerecord/lib/active_record/test_fixtures.rb', line 93 def uses_transaction?(method) @uses_transaction = [] unless defined?(@uses_transaction) @uses_transaction.include?(method.to_s) end  |