Homies and money moves
This commit is contained in:
7
test/controllers/homies_controller_test.rb
Normal file
7
test/controllers/homies_controller_test.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class HomiesControllerTest < ActionDispatch::IntegrationTest
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/controllers/money_moves_controller_test.rb
Normal file
7
test/controllers/money_moves_controller_test.rb
Normal 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
9
test/fixtures/homies.yml
vendored
Normal 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
13
test/fixtures/money_moves.yml
vendored
Normal 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
|
||||
7
test/models/homie_test.rb
Normal file
7
test/models/homie_test.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class HomieTest < ActiveSupport::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/models/money_move_test.rb
Normal file
7
test/models/money_move_test.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class MoneyMoveTest < ActiveSupport::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
Reference in New Issue
Block a user