Homies and money moves

This commit is contained in:
Senad Uka
2019-06-20 22:47:39 +02:00
parent 48300b722c
commit 877f0425d0
17 changed files with 150 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class HomiesControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class MoneyMovesControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

9
test/fixtures/homies.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
name: MyText
importance: 1
two:
name: MyText
importance: 1

13
test/fixtures/money_moves.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
description: MyText
amount: 9.99
from_homie: one
to_homie: one
two:
description: MyText
amount: 9.99
from_homie: two
to_homie: two

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class HomieTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class MoneyMoveTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end