Basic feature implemented, very basic poc
This commit is contained in:
parent
216089a3e7
commit
48c0067076
118 changed files with 2113 additions and 20 deletions
11
test/fixtures/checklist_entries.yml
vendored
Normal file
11
test/fixtures/checklist_entries.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
checklist: one
|
||||
check: one
|
||||
position: 1
|
||||
|
||||
two:
|
||||
checklist: two
|
||||
check: two
|
||||
position: 1
|
||||
11
test/fixtures/checklists.yml
vendored
Normal file
11
test/fixtures/checklists.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
code: MyString
|
||||
name: MyString
|
||||
description: MyText
|
||||
|
||||
two:
|
||||
code: MyString
|
||||
name: MyString
|
||||
description: MyText
|
||||
13
test/fixtures/checks.yml
vendored
Normal file
13
test/fixtures/checks.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
position: MyString
|
||||
name: MyString
|
||||
success_criterion: MyText
|
||||
level: 1
|
||||
|
||||
two:
|
||||
position: MyString
|
||||
name: MyString
|
||||
success_criterion: MyText
|
||||
level: 1
|
||||
13
test/fixtures/elements.yml
vendored
Normal file
13
test/fixtures/elements.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
report: one
|
||||
path: MyString
|
||||
title: MyString
|
||||
description: MyText
|
||||
|
||||
two:
|
||||
report: two
|
||||
path: MyString
|
||||
title: MyString
|
||||
description: MyText
|
||||
9
test/fixtures/reports.yml
vendored
Normal file
9
test/fixtures/reports.yml
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
name: MyString
|
||||
comment: MyText
|
||||
|
||||
two:
|
||||
name: MyString
|
||||
comment: MyText
|
||||
17
test/fixtures/success_criteria.yml
vendored
Normal file
17
test/fixtures/success_criteria.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
||||
|
||||
one:
|
||||
element: one
|
||||
title: MyString
|
||||
description: MyText
|
||||
level: 1
|
||||
result: 1
|
||||
comment: MyText
|
||||
|
||||
two:
|
||||
element: two
|
||||
title: MyString
|
||||
description: MyText
|
||||
level: 1
|
||||
result: 1
|
||||
comment: MyText
|
||||
Loading…
Add table
Add a link
Reference in a new issue