Add basic deadline to sections index
This commit is contained in:
parent
782355322e
commit
f4106b9fb6
15 changed files with 175 additions and 1 deletions
7
test/controllers/extensions_controller_test.rb
Normal file
7
test/controllers/extensions_controller_test.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class ExtensionsControllerTest < ActionDispatch::IntegrationTest
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
19
test/fixtures/extensions.yml
vendored
Normal file
19
test/fixtures/extensions.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
# == Schema Information
|
||||
#
|
||||
# Table name: extensions
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# confirmed :boolean
|
||||
# reason :text
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
extension_housewarming:
|
||||
id: 2
|
||||
reason: Housewarming
|
||||
confirmed: false
|
||||
|
||||
extension_dinner:
|
||||
id: 1
|
||||
reason: Diner
|
||||
confirmed: false
|
17
test/models/extension_test.rb
Normal file
17
test/models/extension_test.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
# == Schema Information
|
||||
#
|
||||
# Table name: extensions
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# confirmed :boolean
|
||||
# reason :text
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
require "test_helper"
|
||||
|
||||
class ExtensionTest < ActiveSupport::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue