added route, controller, model, sidebar link, and basic index page for the work info section so that we can render user data
This commit is contained in:
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
||||
|
||||
one:
|
||||
user_id: 1
|
||||
income: MyString
|
||||
bonuses: MyString
|
||||
years_worked: 1
|
||||
SSN: MyString
|
||||
DoB: 2013-05-31
|
||||
|
||||
two:
|
||||
user_id: 1
|
||||
income: MyString
|
||||
bonuses: MyString
|
||||
years_worked: 1
|
||||
SSN: MyString
|
||||
DoB: 2013-05-31
|
||||
@@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class WorkInfoControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
@@ -0,0 +1,4 @@
|
||||
require 'test_helper'
|
||||
|
||||
class WorkInfoHelperTest < ActionView::TestCase
|
||||
end
|
||||
@@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class WorkInfoTest < ActiveSupport::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
Reference in New Issue
Block a user