Sha256: 1adaad8a96fd79605dbdf8c844fe2ce20a31e670fe37deb4c118b963cea8f0fd

Contents?: true

Size: 828 Bytes

Versions: 11

Compression:

Stored size: 828 Bytes

Contents

module Marty; module RSpec; module Setup
  def marty_whodunnit
    Mcfly.whodunnit = Marty::User.find_by(login: 'marty')
  end

  def load_scripts(path, dt)
    Marty::Script.load_scripts(path, dt)
    Marty::ScriptSet.clear_cache
  end

  def posting(type, dt, comment)
    Marty::Posting.clear_lookup_cache!
    Marty::Posting.do_create(type, dt, comment)
  end

  def dg_from_import(*args)
    Marty::DataGrid.create_from_import(*args)
  end

  def do_import_summary(*args)
    Marty::DataImporter.do_import_summary(*args)
  end

  def disable_triggers(table_name, &block)
      ActiveRecord::Base.connection.
        execute("ALTER TABLE #{table_name} DISABLE TRIGGER USER;")

      block.call
  ensure
      ActiveRecord::Base.connection.
        execute("ALTER TABLE #{table_name} ENABLE TRIGGER USER;")
  end
end end end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
marty-14.3.0 spec/support/setup.rb
marty-14.0.0 spec/support/setup.rb
marty-13.0.2 spec/support/setup.rb
marty-11.0.0 spec/support/setup.rb
marty-10.0.3 spec/support/setup.rb
marty-10.0.2 spec/support/setup.rb
marty-10.0.0 spec/support/setup.rb
marty-9.5.1 spec/support/setup.rb
marty-9.5.0 spec/support/setup.rb
marty-9.3.3 spec/support/setup.rb
marty-9.3.2 spec/support/setup.rb