Sha256: f11d5f0c5d6d3d6237e477237a19f7c43ff11a2b997e6f3a06409246312c04ff

Contents?: true

Size: 679 Bytes

Versions: 5

Compression:

Stored size: 679 Bytes

Contents

##############################################################################
# File::    snapshot.rb
# Purpose:: Snapshot testing helpers
#
# Author::    Jeff McAffee 2015-04-05
#
##############################################################################

def create_snapshot_hash name
  { name: name,
    description: "#{name} Description",
    delete_options: {
      :decision_data => true,
      :conditions_with_images => true,
      :incomes => true,
      :assets => true,
      :expenses => true,
      :hud1_fields => false,
      :payment_schedule => true,
    },
    dts: [
      'All Documents Received',
      'Approval',
      'Denial Reason',
    ]
  }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
admin_module-0.1.8 spec/support/snapshot.rb
admin_module-0.1.7 spec/support/snapshot.rb
admin_module-0.1.6 spec/support/snapshot.rb
admin_module-0.1.5 spec/support/snapshot.rb
admin_module-0.1.4 spec/support/snapshot.rb