19 lines
529 B
Ruby
19 lines
529 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: transactions
|
|
#
|
|
# id :integer not null, primary key
|
|
# debtor_id :integer not null
|
|
# creditor_id :integer not null
|
|
# amount :integer default(0), not null
|
|
# origin :string not null
|
|
# message :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Transaction, type: :model do
|
|
pending "add some examples to (or delete) #{__FILE__}"
|
|
end
|